Encode a string as a URI. Equivalent to the JavaScript encodeURIComponent function.
See the JavaScript encodeURIComponent function specification here .
The following example returns “query=%E6%95%B0%E5%80%A4%3E100”.
= encodeuricomponent ("query=Number > 100")
Customine’s function names are case insensitive, allowing you to use encodeURIComponent as you would in JavaScript.
= encodeURIComponent ("query=Number > 100")