PARSE_URL

Returns an object that representing the parsed url

Syntax 

PARSE_URL(text)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"url": "http://www.tines.com/test?foo=bar&baz=a&baz=b#123"
4
}
5
}

Formula

PARSE_URL(my_action.url)

Output

1
{
2
"domain": "tines.com",
3
"fragment": "123",
4
"host": "www.tines.com",
5
"path": "/test",
6
"query": {
7
"baz": [
8
"a",
9
"b"
10
],
11
"foo": "bar"
12
},
13
"scheme": "http",
14
"tld": "com"
15
}
Was this helpful?