URL_ENCODE

Converts any URL-unsafe characters in the given text into percent-encoded characters.

Syntax 

URL_ENCODE(text)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "alice@example.com"
4
}
5
}

Formula

URL_ENCODE(my_action.message)

Output

"alice%40example.com"

Example 2

Space characters are turned into + characters instead of being percent encoded:

Input

1
{
2
"my_action": {
3
"message": "hello world"
4
}
5
}

Formula

URL_ENCODE(my_action.message)

Output

"hello+world"
Was this helpful?