Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
julioarriaga
Creator II
Creator II

What is the difference between Index and FindOneOf

1 Solution

Accepted Solutions
rubenmarin

Hi, Index searchs the full string, FindOneOf looks for any of the characters.

 

FindOneOf(Field, '0123456789') -> Returns >0 if there is a number (any digit) in the field

Index(Field, '0123456789') -> Returns >0 only if the full string '0123456789' is found

View solution in original post

1 Reply
rubenmarin

Hi, Index searchs the full string, FindOneOf looks for any of the characters.

 

FindOneOf(Field, '0123456789') -> Returns >0 if there is a number (any digit) in the field

Index(Field, '0123456789') -> Returns >0 only if the full string '0123456789' is found