base64_decode_tostring()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
將base64字串譯碼為UTF-8字串。
已被取代的別名: base64_decodestring()
語法
base64_decode_tostring(
base64_string)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
base64_string | string |
✔️ | 要從base64譯碼為UTF-8字串的值。 |
傳回
傳回從base64字串譯碼的UTF-8字串。
範例
print Quine=base64_decode_tostring("S3VzdG8=")
輸出
Quine |
---|
Kusto |
嘗試譯碼從無效 UTF-8 編碼產生的 base64 字串會傳回 Null:
print Empty=base64_decode_tostring("U3RyaW5n0KHR0tGA0L7Rh9C60LA=")
輸出
空的 |
---|
相關內容
- 若要將base64字串譯碼為長值陣列,請參閱 base64_decode_toarray()
- 若要將字串編碼為base64字串,請參閱 base64_encode_tostring()