Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 657 Bytes

String.base64EncodeURI.md

File metadata and controls

22 lines (16 loc) · 657 Bytes

String.base64EncodeURI

The base64EncodeURI function is established to encode a String by base64. The encoded string can be used as an Id. This function is powered by base64.

Sample

	var value;
	value=("A=B B=C C=D".base64Encode());//value="QT1CIEI9QyBDPUQ=";
	value=value.base64Decode();//value="A=B B=C C=D"
value=("A=B B=C C=D".base64EncodeURI());//value="QT1CIEI9QyBDPUQ";
value=value.base64Decode();//value="A=B B=C C=D"

API

CallingReturning
{String} . base64EncodeURI ( ){String}