that's what i want ...
Assuming I'm trying to get the value "B"
<tree>
<nodea>
<nodeb>
A=foo;
B=bar;
C=goo;
</nodeb>
</nodea>
</tree>
the following magic syntax that would make sense ... I'm looking for something comparable that really works :)
string = "./nodea/nodeb/[ REGEX( 'B=(.*?);' ) ]/ $1"
Is there anything similar in any jpath xpath library?
source
share