URL-encodes the contents of a string field.
Hide omitted argument names for this function
Omitted Argument NamesThe argument name for
field
can be omitted; the following forms of this function are equivalent:logscale SyntaxurlEncode("value")
and:
logscale SyntaxurlEncode(field="value")
These examples show basic structure only.
urlEncode()
Examples
With an event with a field
Bar=https://www.example.com,
you get
https%3A%2F%2Fwww.example.com
in
the _urlencode field
urlEncode("Bar")
With an event with a field
Bar=https://www.example.com,
you get
https%3A%2F%2Fwww.example.com
in
the Foo field
Foo:=urlEncode("Bar")
With an event with a field
Bar=https://www.example.com,
you get
https%3A%2F%2Fwww.example.com
in
the Foo field
urlEncode("Bar", as="Foo")