URL-decodes the contents of a string field.

ParameterTypeRequiredDefault ValueDescription
asstringoptional[a]_urldecode Name of output field.
field[b]stringrequired  The name of the input field with the value to url-decode.

[a] Optional parameters use their default value unless explicitly set.

[b] The argument name field can be omitted.

Hide omitted argument names for this function

Show omitted argument names for this function

urlDecode() Examples

With an event with a field Bar=https%3A%2F%2Fwww.example.com, you get https://www.example.com in the _urldecode field:

logscale
urlDecode("Bar")

With an event with a field Bar=https%3A%2F%2Fwww.example.com, you get https://www.example.com in the Foo field:

logscale
Foo:=urlDecode("Bar")

With an event with a field Bar=https%3A%2F%2Fwww.example.com, you get https://www.example.com in the Foo field:

logscale
urlDecode("Bar", as="Foo")