Use this function to check if a string contains a specific fragment. A true/ false value is returned as output.
This function performs a case insensitive check.
Arguments
For more information on arguments, see the table below.
Argument | Type | Description |
---|---|---|
Text | Required | The text to examine in search of the Fragment . |
Fragment | Required | The text to search for in Text . |
Examples
Contains("Blueberry”, "blue")
: TrueContains("Blueberry”, "Berry"
): TrueContains("Blueberry”, "Raspberry")
: FalseContains("My favorite jam is Apricot”, "Apricot")
: True
Updated about a year ago