I have this text in html page
<div class="phone-content">
050 2836142
</div>
I extract it like this:
I am using xpath to extract the value inside that div live this
normalize-space(.//div[@class='fieldset-content']/span[@class='listing-reply-phone']/div[@class='phone-content']/text())
I got this result:
"\u202a050 2836142\u202a"
anyone knows who to tell the xpath in python to remove that unicode chars?