次の方法で共有


base64_encode_tostring()

適用対象: ✅Microsoft FabricAzure データ エクスプローラーAzure MonitorMicrosoft Sentinel

文字列を base64 文字列としてエンコードします。

非推奨のエイリアス: base64_encodestring()

構文

base64_encode_tostring(string)

構文規則について詳しく知る。

パラメーター

件名 タイプ Required Description
string string ✔️ base64 文字列としてエンコードする値。

返品

base64 文字列としてエンコードstring を返します。

print Quine=base64_encode_tostring("Kusto")

出力

Quine
S3VzdG8=
  • base64 文字列を UTF-8 文字列にデコードするには、 base64_decode_tostring()を参照してください。
  • base64 文字列を長い値の配列にデコードするには、 base64_decode_toarray()を参照してください。