I am trying to find out how to select the ABCD part of the text from below h1 below using xPath on RapidMiner.
<h1> 2010 ABCD EFGTTH FEEDS ASSGEAA </h1>
I have come with the following, but it will not return any result at all.
substring-before(substring-after(substring(//h1, 1, 4)/text(), ' '), ' ')
Could someone please give me some suggestion? Thank you.