I extracted from an invoice the total amount to be paid as string, using Get Text: “5.961,47”.
“.” (point) is the thousands separator and “,” (comma) is the decimal separator.
How can I convert it in double? I tried Double.Parse but I receive error message: Input string was not in a correct format.
Note: I don’t really care if the thousands separator is maintained after convertion.