hello,
I have a .csv file (created by 'users'). I need to load this file in a database.
I'd like to 'prepare' the file, to avoid any problem during the load.
This is why I need to delete every line where there is nothing else than ; or spaces.
Example
a;b;c;d
;;;
; ;
;
e;f;g;h
should become :
a;b;c;d
e;f;g;h
Thank you !
I have a .csv file (created by 'users'). I need to load this file in a database.
I'd like to 'prepare' the file, to avoid any problem during the load.
This is why I need to delete every line where there is nothing else than ; or spaces.
Example
a;b;c;d
;;;
; ;
;
e;f;g;h
should become :
a;b;c;d
e;f;g;h
Thank you !