Whatever message this page gives is out now! Go check it out!
SpanIncluding(string, set) |
Parameter | Description |
string | A string or a variable that contains the search string. |
set | A string or a variable that contains a set of characters. Must contain one or more characters. |
<cfscript>
string="Highway star"
strToset="High"
writeOutput(SpanIncluding(string,strToset)) // High
</cfscript>