cannot parse csv file start with unexpected character
I’m tring to parse a csv file, but it’s head start with character ZWNBSP
which make my code fail, how can i parse this csv as expected?
cannot parse csv file start with unexpected character 【Golang】
I’m tring to parse a csv file, but it’s head start with character ZWNBSP
which make my code fail, how can i parse this csv as expected?
`csv.NewReader(r)` fails to split csv into records (record per line) from `http.Request` (`Body io.ReadCloser`) using `oapi-codegen` strict-server
I have an endpoint that receives a CSV file through HTTP. To generate the server code I use oapi-codegen with net/http go 1.22.2
in strict-server mode.