<< Click to Display Table of Contents >>

Base64decode

Base64로 인코딩된 문자열을 Base64로 디코딩하여 오즈 바이너리 객체로 설정합니다.

Prototype

void Base64decode(string Text)

Parameters

Text

Base64로 인코딩된 문자열

Example

var binary = OZCreator.getBuiltInObject("OZBinary");

//var binary = OZCreator.getBuiltInObject(OZBuiltInObject.BINARY);

binary.Base64decode("xde9usau");

var encodetext = binary.Base64encode();