FindOneOf
Method Signature
FindOneOf(set=[string], string=[string], start=[integer])Arguments
Argument
Type
Required
Description
Default
Examples
Find first instance starting from beginning of string.
string_to_search = "The rain in Spain falls mainly in the plains.";
writeOutput( findOneOf( "in", string_to_search ) );
Find first instance starting from the twelfth character.
Example showing this function will search all characters from the 'set' argument in the 'string' argument.
Additional Examples
Related
Last updated
Was this helpful?
