Class SplitOnMatches

All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
Direct Known Subclasses:
SplitOnMatchesEvaluator

public class SplitOnMatches extends OperatorExpression implements org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
The SplitOnMatches operator splits a string into a list of strings using matches of a regex pattern. The separatorPattern argument is a regex pattern, following the same semantics as the Matches operator. If the stringToSplit argument is null, the result is null. If the stringToSplit argument does not contain any appearances of the separator pattern, the result is a list of strings containing one element that is the input value of the stringToSplit argument.

Java class for SplitOnMatches complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="SplitOnMatches">
   <complexContent>
     <extension base="{urn:hl7-org:elm:r1}OperatorExpression">
       <sequence>
         <element name="stringToSplit" type="{urn:hl7-org:elm:r1}Expression"/>
         <element name="separatorPattern" type="{urn:hl7-org:elm:r1}Expression"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>