base64_decode_toguid()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft 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()を参照してください。