✅ Strange parsing error with docker instance
So I have a program that scrapes prices and parses them into longs with these lines of code
however I got this error
Is this because of unicode differences in linux that doesn't work well with docker images made in windows? The above code seems to work fine on my windows machine.
6 Replies
Probably a matter of system culture
In some cultures,
,
is a decimal separator, in some it's a thousands separator, etc
Could be that your dev culture is different from the prod culturehm would something like
work then?
ah yes tested with invariant Culture and returns the same error
Probably because invariant culture's currency symbol is
¤
Angius
REPL Result: Success
Result: <>f__AnonymousType0#1<string, string>
Compile: 328.036ms | Execution: 61.385ms | React with ❌ to remove this embed.
You're probably looking for the
en-US
cultureok thanks o/ worked