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 an array of long values.
base64_decode_toarray(
base64_string)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
base64_string | string |
✔️ | The value to decode from base64 to an array of long values. |
Returns an array of long values decoded from a base64 string.
print Quine=base64_decode_toarray("S3VzdG8=")
// 'K', 'u', 's', 't', 'o'
Output
Quine |
---|
[75,117,115,116,111] |
- To decode base64 strings to a UTF-8 string, see base64_decode_tostring()
- To encode strings to a base64 string, see base64_encode_tostring()