substring() Operation
Syntax |
NONE
| |
---|---|---|
Semantics | Extracts a substring of a given length beginning at position startIndex . Returns a new string. The state of the current string is not changed. If length is greater than the length of aString , an error is raised. | |
Substitutables | aString | Can be any variable or object attribute having the type String. |
startIndex, length | Can be any variable or object attribute having the type Integer. The start index cannot be negative. | |
LITERAL | String literal. | |
Examples |
NONE
|