I am using Portia to extract info from a page. However, one of the values extracted is not in a format that I can use.
More specifically, I want to extract a numeric value which uses a dot instead of a comma to denote thousands e.g. "1.000" instead of "1,000".
Is it possible to extract and then transform with Portia? I can set a regex to extract numbers but is it possible to replace them too?
What I'm doing now is that I export the data to csv and then use sed
to replace the numbers in question.
Thanks