Tile - String - Substring – Ylands
Jump to navigation
Jump to search
Substring(Source, Start index, Length)
substr(start: number, length: number): string;
Parameters
start
length
Returns
string
Description
Returns new string of given length extracted from source text.
Notes
- Start index - position at which to start substring.
- Length - number of characters to be extracted.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...
Substring(Source, Start index, End Index)
substring(start: number, end: number): string;
Parameters
start
end
Returns
string
Description
Returns new string extracted from source text within the given range.
Notes
- Interval is half closed and does not include character at end position.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...
Substring(Source, Start index)
substring(start: number): string;
Parameters
start
Returns
string
Description
Returns new string extracted from given start position until the end of source text.
Notes
- Start index - position at which to start substring.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...