Calculation Formulas
Back to Calculation Formulas Overview
Back to Functions Overview
Function "Contains"
Contains(text, searchfortext)
Function: Checks if "text" contains an appearance of "searchfortext". Returns "true" if the text is found, "false" if not.
Return-Type: Boolean
Arguments:
text - Type Text: The text string to search in.
searchfortext - Type Text: The string to search for.
Examples:
Contains("a longer text", "longer")
Contains(&VALUE;, "sample")