The following functions are available.

Function Name Arguments Description Example
URLPathEscape URLPathEscape(s) Escaping s to a string that can be safely placed in a URL path segment URLPathEscape(“test1?test2 test3”) -> “test1%3Ftest2%20test3”
URLPathUnescape URLPathUnescape(s) Undo any escaped string with URLPathEscape
URLQueryEscape URLQueryEscape(s) Escaping s to a string that can be safely placed in a URL query URLQueryEscape(“test1?test2 test3”) -> “test1%3Ftest2+test3”
URLQueryUnescape URLQueryUnescape(s) Undo the escaped strings with URLQueryEscape
MD5 MD5 Return MD5 in byte sequence b
SHA1 SHA1 Return SHA1 of byte sequence b
SHA256 SHA256 Return SHA256 of byte sequence b
BASE64 BASE64 Returns BASE64 of the byte sequence b. If true is specified with pad, =padding is performed (the default is true)
DecodeBASE64 DecodeBASE64(s[, pad]) Decode BASE64s. pad=true = BASE64 with padding (the default is true)
BASE64URL BASE64URL Returns the BASE64 used in the URL or file name for the byte sequence b. If true is specified in the pad, =padding is performed (the default is true)
DecodeBASE64URL DecodeBASE64URL(s[, pad]) Decode BASE64s. pad=true = BASE64 with padding (the default is true)

Need more help with this?
Join our slack community for help

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.