Example 1: Regex match
This example sets a base xpath of /a/b, the document fragment located below /a/b will be returned given a match.
The subxpath c is a relative xpath and must be relative with respect to the base xpath.
The pattern is donk.* which will match "donkey".
<idoc> <seq> <instr> <type>stm</type> <operand>doc.xml</operand> <operator> <stm:group xmlns:stm="http://1060.org/stm"> <stm:regex subxpath="c" xpath="/a/b">donk.*</stm:regex> </stm:group> </operator> <target>this:response</target> </instr> </seq> </idoc>
Try it
 |