Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Decodes a base64 string to a GUID.
base64_decode_toguid(
base64_string)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
base64_string | string |
✔️ | The value to decode from base64 to a GUID. |
Returns a GUID decoded from a base64 string.
print Quine = base64_decode_toguid("JpbpECu8dUy7Pv5gbeJXAA==")
Output
Quine |
---|
10e99626-bc2b-754c-bb3e-fe606de25700 |
If you try to decode an invalid base64 string, "null" will be returned:
print Empty = base64_decode_toguid("abcd1231")
To encode a GUID to a base64 string, see base64_encode_fromguid().