Base64Decode

概要 

Base64Encode() 関数を使用してエンコードされた任意の文字列値を復号化します。この関数は、特定のサーバーサイド JavaScript 関数を使用してエンコードされた値でのみ機能し、他の Base64 エンコード文字列値では機能しません。

構文 

Base64Decode(1, 2)

関数のプロパティ 

序数説明
1string必須復号化する Base64 エンコード文字列
2string文字列値を復号化するときに使用する文字セット (ASCII、UTF-8 など)

例 

1<script runat="server">
2     var encodedStr = Platform.Function.Lookup("forBase64Info","ReceiptData","ReceiptKey","stringValue");
3     var decodedStr = Platform.Function.Base64Decode(encodedID);
4</script>