CONTAINS_URL

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

Syntax 

CONTAINS_URL(text)

Usage 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?