Web scraping: How do I handle euro signs?

320 Views Asked by At

So I'm trying to scrape prices of a product on a website, and their HTML looks like this:

<div class="pricing_price">€12.99</div>

Now I've wrote a xpath query that gets price, and it returns a string like this:

€ 12.99.

If possible, I would like to just get the 12.99. What are my options? Should I use regular expressions? Or are there better/easier solutions?

0

There are 0 best solutions below