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.
SpanIncluding( string=string, set=string );
Returns: String
| Argument | Description |
|---|---|
|
string
string,
required
|
edit
A string or a variable that contains the search string. |
|
set
string,
required
|
edit
A string or a variable that contains a set of characters. Must contain one or more characters |
Examples
editwriteDump(spanIncluding("Plant green! save earth!", "Plant green!r"));
//Member Function
str="AabByyysss";
writeDump(str.spanIncluding("AabBz"));
See also
- Strings
- string.spanIncluding()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)