XPath:Functions:substring
From MDC
Contents |
The substring function returns a part of a given string.
[edit] Syntax
substring( string , start [, length] )
[edit] Arguments
string- The string to evaluate.
start- The position within
stringthe substring begins
length(optional)- The length of the substring. If omitted, the returned string will contain every character from the
startposition to the end ofstring.
[edit] Returns
A string.
[edit] Notes
As in other XPath functions, the position is not zero-based. The first character in the string has a position of 1, not 0.
[edit] Defined
[edit] Gecko support
Supported.