Encode a string as a URI. Equivalent to the JavaScript encodeURI function.
See the JavaScript encodeURI function specification here .
In the following example, the result is “https://mydomain-xxxx.cybozu.com/k/12345/query=%E6%95%B0%E5%80%A4%3E100".
= encodeuri ("https://mydomain-xxxx.cybozu.com/k/12345/query=Number>100")
Customine’s function names are case insensitive, allowing you to write encodeURIs as you would in JavaScript.
= encodeURI ("https://mydomain-xxxx.cybozu.com/k/12345/query=Number>100")