STRING::PATH_UNESCAPE 1g 2023-11-12 laplante@plcb.ca GOWEB/STRING

Synopsis

string::path_unescape or path_unescape(string)

Description

Unescapes a string encoded with path_escape.

Examples

res={{
	a := { "array" : [1,2,3] };
	path_unescape(path_escape(a));
	path_unescape(path_escape("A long/string"));
	query_unescape(query_escape(a));
	query_unescape(query_escape("A long/string"));
}}.
res={"array":[1,2,3]}A long/string{"array":[1,2,3]}A long/string.

Author

laplante@plcb.ca

See also

Version