CONTAINS
From LongJump Support Wiki
Revision as of 23:37, 25 August 2009 by imported>Evelyn
The CONTAINS function determines whether a given text string contains another text string. If the text string contains the compare_text string, this function returns TRUE. If the text string does not contain the compare_text string, this function returns FALSE.
- Syntax
CONTAINS(text, compare_text)
- Return
- TRUE or FALSE
- Examples
CONTAINS('streetlamp', 'lamp') = TRUE CONTAINS('streetlamp', 'streets') = FALSE