string.spanIncluding()
Gets characters from a string, from the beginning to a character that is not in a specified set of characters. The search is case-sensitive.
string.spanIncluding( set=string )
Returns: String
| Argument | Description |
|---|---|
|
set
string,
required
|
edit
A string or a variable that contains a set of characters. Must contain one or more characters |
Examples
edit str="AabByyysss";
writeDump(str.spanincluding("AabsBy"));