easycsv
easycsv copied to clipboard
Can't read the first column by the name
var entry struct {
Product string name:"Product"
}
if the "Product" is in the first column, it will fail.
debug output: Product did not appear in the first line
When name:"ColumnName"
is set in the field, easycsv
treats the first line as the header row.
Thus, the input CSV must be something like
Product,Price
Apple,100
What kind of data did you try to parse?