InStrAny%

Takes two parameters, Source, Match

Description:

This command finds the first occurence of any of the values in the Source parameter that match any of the characters in the Match parameter.

Returns 0 if none of the characters in the Match are found in the Source.

Note: This function should not be used as input for an If condition, as the If conditions have built in operators for this purpose. See the Syntax and Builtin Values page for more details.

Example:

[New] Source = "1234"
[New] Match = "24"

[New] Results = InStrAny$ Source, Match

Results are equal to 2.