encode_uri_component multimethod
Methods
- encode_uri_component(s:Str) Source: stdlib.ngs:6034
Encodes URI component, escaping with %XX hexadecimal codes. Returns
StrExample
encode_uri_component("ab+c%") # "ab%2Bc%25"
encode_uri_component("ab+c%") # "ab%2Bc%25"