Class Substring

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

public class Substring extends OperatorExpression implements org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
The Substring operator returns the string within stringToSub, starting at the 0-based index startIndex, and consisting of length characters. If length is ommitted, the substring returned starts at startIndex and continues to the end of stringToSub. If stringToSub or startIndex is null, or startIndex is out of range, the result is null.

Java class for Substring complex type.

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

 <complexType name="Substring">
   <complexContent>
     <extension base="{urn:hl7-org:elm:r1}OperatorExpression">
       <sequence>
         <element name="stringToSub" type="{urn:hl7-org:elm:r1}Expression"/>
         <element name="startIndex" type="{urn:hl7-org:elm:r1}Expression"/>
         <element name="length" type="{urn:hl7-org:elm:r1}Expression" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>