Moduleurn:org:ten60:netkernel:ext:sys
The
regex
accessor is exported by the urn:org:ten60:netkernel:ext:sys module.
Import this module to gain access to the accessor.
Syntax
Argument | Rules | Description | operand | Mandatory Fragment OK | document or fragment whose text nodes are to be used as the value
to test | operator | Mandatory | a document specifying properties for the regex evaluation |
Example UsageDPML<instr> <type>regex</type> <operand> <string>Mambo is a dog</string> </operand> <operator> <regex> <pattern>(.*)is a(.*)</pattern> <rewrite>$1is black</rewrite> </regex> </operator> <target>this:response</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:regex");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |