1. Docs
  2. Formulas
  3. Functions

CONTAINS_URL

Checks if a text value contains a URL. This function returns true if any part of the string matches a URL pattern.

Categories: Text

Syntax

CONTAINS_URL(text)

Examples

Example 1

Input

1
{
2
"my_action": {
3
"message": "This message contains a url, https://example.com ."
4
}
5
}

Formula

CONTAINS_URL(my_action.message)

Output

true
Was this helpful?