Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Caché で BASE64 文字列との間でエンコード/デコードする "組み込み" メソッドまたは方法はありますか?
エンコードするには: Write $System.Encryption.Base64Encode("text")
Write $System.Encryption.Base64Encode("text")
デコードするには: Write $System.Encryption.Base64Decode("dGV4dA==")
Write $System.Encryption.Base64Decode("dGV4dA==")
注: Base 64 エンコードでは、Unicode (2 バイト) 文字を含む文字列をエンコードできません。Unicode 文字列を Base 64 でエンコードする必要がある場合は、まず文字列を UTF8 形式に変換してからエンコードする必要があります。