Contains
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.
Check the page for the Contains keyword.
The Contains() function checks if a string contains another string.
This check is not case-sensitive and ignores diacritics.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns true if text contains subtext and false otherwise
Syntax
Contains(text,subtext)
Contains("Text contains subtext", "contains")
=> True
Contains("Text contains subtext", " spaces ")
=> False
Parameters
Name
Type
Required
Description
text
text
☑️
Original text you want to check.
subtext
text
☑️
Text that you check the original text for.
Last updated
Was this helpful?