One way is to insert sep = yourdelimiter at the beginning of the file.
If you create csv in PHP: fwrite ($ fileHandle, 'sep = yourdelimiter '. "\ R \ n");
Otherwise, you can open your csv with a text editor and add sep = yourdelimiter to the top of the file.
user3202819
source share