-
I am trying to parse a very simple csv file named
with the following command (under Windows):
but I get the following error:
Any idea what is goning on ? This error message is note very user friendly, imo. It looks like go panic. Another question : how can I tel bafi that my csv is using a different field separator ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi in this case the issue is that you have range of values so you have to iterate over range - I've tested it and it works with
I agree that better arror message would be nice, I'll enhance it in next versions About separator - I will prepare some option to change separator in next version but currently it works only with CSV as specified in rfc4180 https://datatracker.ietf.org/doc/html/rfc4180 |
Beta Was this translation helpful? Give feedback.
Hi in this case the issue is that you have range of values so you have to iterate over range - I've tested it and it works with
I agree that better arror message would be nice, I'll enhance it in next versions
About separator - I will prepare some option to change separator in next version but currently it works only with CSV as specified in rfc4180 https://datatracker.ietf.org/doc/html/rfc4180