Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
Syntax
Binary.FromText(text as nullable text, optional encoding as nullable number) as nullable binary
About
Returns the result of converting text value text to a binary (list of number). encoding may be specified to indicate the encoding used in the text value. The following BinaryEncoding values may be used for encoding.
- BinaryEncoding.Base64: Base 64 encoding
- BinaryEncoding.Hex: Hex encoding
Example 1
Decode "1011" into binary.
Usage
Binary.FromText("1011")
Output
Binary.FromText("1011", BinaryEncoding.Base64)
Example 2
Decode "1011" into binary with Hex encoding.
Usage
Binary.FromText("1011", BinaryEncoding.Hex)
Output
Binary.FromText("EBE=", BinaryEncoding.Base64)