contains

Use the contains function to check if a Text value exists within another Text value. The contains function returns a Boolean value.

Function format

contains(Text source, Text value)

  • source: the Text value which is checked for the second Text value parameter.
  • value: the value checked for in the Text source.

contains example

contains("Hello, world!", "world")

The formula returns the Boolean value True.