Closed
Description
Hello,
I'm trying to parse a file with the extension 'xls' which is not an Excel file but it's clearly an html file (open with a text editor it's clearly html code).
One of my columns uses the italian convention of using the comma instead of the dot before decimals: 5,5 instead of 5.5. I was hoping to parse it at least as string and replace commas with dots and convert the string to a float.
The problem is that the commas are completely ignored and instead of getting 5,5 or 7,04, I'm getting 55 and 704.
Is this known? Any idea on how to solve it?