Whatever message this page gives is out now! Go check it out!
FindOneOf(set, string [, start ]) |
Parameter | Description |
set | A string or a variable that contains one. String that contains one or more characters to search for. |
string | A string or a variable that contains one. String in which to search. |
start | Start position of search. |
<cfscript>
stringToSearch = "The quick brown fox jumped over the lazy dog."
writeOutput(findoneof("aeiou",stringToSearch) & "<br/>")
writeOutput(findoneof("aeiou",stringToSearch,4) & "<br/>")
writeOutput(findoneof("@%^*()",stringToSearch))
</cfscript>