Skip to main content

Text.FromBinary

ถอดรหัสข้อมูลจากรูปแบบไบนารีให้เป็นข้อความ

Syntax

Text.FromBinary(
binary as binary,
optional encoding as TextEncoding.Type
) as text

Remarks

ถอดรหัสข้อมูลจากค่าไบนารีเป็นค่าข้อความโดยใช้ชนิดการเข้ารหัสที่ระบุ

  • binary: ข้อมูลไบนารีที่จะถอดรหัส
  • encoding: (เพิ่มเติม) การเข้ารหัสที่ใช้เพื่อแปลงไบนารีเป็นข้อความ ใช้รหัส BinaryEncoding.Type เพื่อระบุชนิดของการเข้ารหัส ถ้าไม่ได้ระบุค่านี้ ค่าเริ่มต้นคือ BinaryEncoding.Utf8

Examples

Example #1

เข้ารหัสข้อความเป็นไบนารี สร้างสตริง Base64 ที่สามารถดูได้ แล้วถอดรหัสกลับเป็นข้อความ

let
originalText = "Testing 1-2-3",

// Default UTF-8 binary
binaryData = Text.ToBinary(originalText),

// Convert binary to viewable Base64 string
encodedText = Binary.ToText(binaryData, BinaryEncoding.Base64),

// Decode back to text
decodedText = Text.FromBinary(binaryData),

result = [
OriginalText = originalText,
BinaryBase64 = encodedText,
DecodedText = decodedText
]
in
result

Result:

[
OriginalText = "Testing 1-2-3",
BinaryBase64 = "VGVzdGluZyAxLTItMw==",
DecodedText = "Testing 1-2-3"
]

Example #2

เข้ารหัสข้อความเป็นไบนารีด้วย Byte Order Mark (BOM) สร้างสตริงเลขฐานสิบหกที่สามารถดูได้ แล้วถอดรหัสกลับเป็นข้อความ

let
originalText = "Testing 1-2-3",

// Convert to binary with BOM
binaryData = Text.ToBinary(originalText, TextEncoding.Utf16, true),

// Show binary as hex to demonstrate presence of BOM (fffe)
binaryAsHex = Binary.ToText(binaryData, BinaryEncoding.Hex),

// Decode back to text
decodedText = Text.FromBinary(binaryData, TextEncoding.Utf16),

// Compare original text and decoded text
isIdentical = originalText = decodedText,

result = [
OriginalText = originalText,
BinaryHex = binaryAsHex,
DecodedText = decodedText,
IsIdentical = isIdentical
]
in
result

Result:

[
OriginalText = "Testing 1-2-3",
BinaryHex = "fffe540065007300740069006e006700200031002d0032002d003300",
DecodedText = "Testing 1-2-3",
IsIdentical = true
]

Category

Text.Conversions from and to text