You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I need to parse a file that uses inconsistent delimiters (tab and space in my case)
Describe the solution you'd like
I'd like to be able to specify a list of delimiters
parse({delimiter: [' ','\t']})
Describe alternatives you've considered
I tried using \s as a delimiter in the end I created my own stream to replace the tabs with spaces before piping to fastcsv. an alternative could be to specify a regex pattern as a delimiter like pandas for sep
Additional context
I'm happy to try to implement this if you think this is a worthwhile feature
The text was updated successfully, but these errors were encountered:
Parsing or Formatting?
Is your feature request related to a problem? Please describe.
I need to parse a file that uses inconsistent delimiters (tab and space in my case)
Describe the solution you'd like
I'd like to be able to specify a list of delimiters
Describe alternatives you've considered
I tried using
\s
as a delimiter in the end I created my own stream to replace the tabs with spaces before piping to fastcsv. an alternative could be to specify a regex pattern as a delimiter like pandas forsep
Additional context
I'm happy to try to implement this if you think this is a worthwhile feature
The text was updated successfully, but these errors were encountered: