次の方法で共有


base64_decode_toguid()

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

base64 文字列を GUID にデコードします。

構文

base64_decode_toguid(base64_string)

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

パラメーター

件名 タイプ Required 説明
base64_string string ✔️ base64 から GUID にデコードする値。

返品

Base64 文字列からデコードされた GUID を返します。

print Quine = base64_decode_toguid("JpbpECu8dUy7Pv5gbeJXAA==")  

出力

Quine
10e99626-bc2b-754c-bb3e-fe606de25700

無効な Base64 文字列をデコードしようとすると、"null" が返されます。

print Empty = base64_decode_toguid("abcd1231")

GUIDを base64 文字列にエンコードするには、base64_encode_fromguid()を参照してください。