次の方法で共有


base64_encode_fromguid()

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

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

構文

base64_encode_fromguid(guid)

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

パラメーター

件名 タイプ Required 説明
guid guid ✔️ base64 文字列にエンコードする値。

返品

GUID* をエンコードした base64 文字列*を返します。

print Quine = base64_encode_fromguid(toguid("ae3133f2-6e22-49ae-b06a-16e6a9b212eb"))  

出力

Quine
8jMxriJurkmwahbmqbIS6w==

このように GUID* ではないものにエンコードを試みると、エラー*がスローされます:

print Empty = base64_encode_fromguid("abcd1231")