다음을 통해 공유


base64_decode_toguid()

적용 대상: ✅Microsoft Fabric✅Azure Data ExplorerAzure MonitorMicrosoft Sentinel

BASE64 문자열을 GUID디코딩합니다.

구문

base64_decode_toguid(base64_string)

구문 규칙에 대해 자세히 알아봅니다.

매개 변수

이름 Type 필수 설명
base64_string string ✔️ base64에서 GUID로 디코딩할 값입니다.

반품

base64 문자열에서 디코딩된 GUID를 반환합니다.

예시

print Quine = base64_decode_toguid("JpbpECu8dUy7Pv5gbeJXAA==")  

출력

퀘인 주
10e99626-bc2b-754c-bb3e-fe606de25700

잘못된 base64 문자열을 디코딩하려고 하면 "null"이 반환됩니다.

print Empty = base64_decode_toguid("abcd1231")

GUIDbase64 문자열로 인코딩하려면 base64_encode_fromguid()를 참조하세요.