yutokun/CSV-Parser

Parsing a CSV with arabic characters inverts the value order.

pabloleban opened this issue · 1 comments

For example a CSV containing

"upgrade_boost","האצה"

ends up being:

Key: "upgrade_boost"
Value: הצאה

when the value should be האצה

This is probably because of the .Append thing and the Right To Left arabic direction.

A quick fix would be to force the left to right direction when doing the foreach of the string, which I'm struggling to do.

I've been trying for the last 6 hours to fix this but I can't find a proper solution for this.

Thanks for this awesome lib anyway.

Never mind. The CSV Parser is doing its thing correctly. It's a TextMeshPro issue. Thank you.