-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
read_html ignores commas #8200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Why aren't you using |
Try it with |
Actually I'm using |
This requires implementing the |
I'm in, I can have a look at it. |
look in |
This came up on the ML:
|
Yep this is actually non trivial as it requires adding some new parsing functionality. It can probably be copied from the c parser mostly so not huge. Would be a nice first pr |
Actually I noticed that the argument |
closing as dupe of #12907 |
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?
The text was updated successfully, but these errors were encountered: