Functions
decode | I Decodes the given string value into a |
encode | I Encodes the given string value into a |
decode
Isolated Function
Decodes the given string value into a string
using the provided charset.
1string value = "http://www.domain.com/?param1=http%3A%2F%2Fxyz.com%2F%3Fa%3D12%26b%3D55¶m2=99";2string decoded = check url:decode(value, "UTF-8");
encode
Isolated Function
Encodes the given string value into a string
using the provided charset.
1string value = "param1=http://xyz.com/?a=12&b=55¶m2=99";2string encoded = check url:encode(value, "UTF-8");