I'm currently trying to extract some text from a website with xPath and Rapidminer. I want to extract the "270€" from the following code:
<dd class="grid-item three-fifths">
<span class="is1-operator">+</span>
270 €
</dd>
I tried the following which didn't work.
//h:dd[@class='grid-item three-fifths']//text()
Thanks for your help :)
Your Xpath returns 3 text nodes:
""
"+"
"270€"
Try below XPath to fetch only
"270€"