We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Csv has an optional parameter at the header line.
For example
"sep=;" a;b; 1;2; 3;4;
It is a csv which represents:
But when i use the csv to parse it, i fould the result list which contain the first line "sep=;", and also the empty column will be included.
"sep=;"
The result list will be:
list[0]=["sep=;"] list[1]=["a","b",""] list[2]=[1,2,""] list[3]=[3,4,""]
Is there are any optional parameter to assign the sep parameter? I current use csv which version number is '5.0.2'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Csv has an optional parameter at the header line.
For example
It is a csv which represents:
But when i use the csv to parse it, i fould the result list which contain the first line
"sep=;"
, and also the empty column will be included.The result list will be:
Is there are any optional parameter to assign the sep parameter? I current use csv which version number is '5.0.2'.
The text was updated successfully, but these errors were encountered: