I'm trying to parse a HTML file using Jsoup. In this HTML there is a special character that I want to remove, (€), this is how it's originally:
<span class="price-value">
49,99 €
</span>
However, Netbeans shows this when printing that element:
49.99 ?
Therefore, I cannot do this:
price.replace( "€", "" ).replace( ",", "." ).trim();
Neither this:
price.replace( "\\?", "" ).replace( ",", "." ).trim();
What can I do about it?