FindChar returns a number for the first position of any of the desired chars to find. I think it returns 0 or -1 if none are found, so you need to make a modification to something like:
IF ( FindChar (inputs) > 0 )
and then it should work like you want.
... View more