Last updated 1 year ago
Was this helpful?
This function is only available for backwards compatibility.
The Contains Keyword is the preferred option: it can be used on Texts, on Concept Sets and on Lists.
Contains
Check the .
The Contains() function checks if a string contains another string. This check is not case-sensitive and ignores diacritics.
Contains()
This function is NOT SQL compatible. For more information about SQL compatibility, see our .
Returns true if text contains subtext and false otherwise
true
Contains(
text
,
subtext
)
Contains("Text contains subtext", "contains") => True
Contains("Text contains subtext", "contains")
True
Contains("Text contains subtext", " spaces ") => False
Contains("Text contains subtext", " spaces ")
False
Original text you want to check.
Text that you check the original text for.