Skip to main content

String Contains

An expression editor function that checks if a string contains a specific substring.

Updated yesterday

Overview

This function returns true if the target string includes the specified substring. You can specify whether the search should be case sensitive.


Parameters

stringContains("string", "contains", caseSensitive)

String

The string to search within.

Contains

The substring to search for.

Case Sensitive

Boolean value indicating whether the search is case sensitive.


For example...

stringContains("Hello World", "world", false)

Returns true (case insensitive match).

Did this answer your question?