FromByteArray - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


StringTools

  

ToByteArray

  

convert a string to an array of bytes

  

FromByteArray

  

convert a string from an array of bytes

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ToByteArray( s )

FromByteArray( a )

Parameters

s

-

string; Maple string

a

-

ByteArray; array of bytes

Description

• 

The ToByteArray(s) command converts a Maple string to an array of bytes, that is, an object of type ByteArray. The resulting array is equivalent to one constructed using the expression Array( convert( s, 'bytes' ), 'datatype' = 'integer'[ 1 ], 'order' = 'C_order' ).

• 

The FromByteArray(a) command converts a byte array to a string. The argument a must be a ByteArray. The string formed from the bytes in the array up to, but not including, the first zero entry (if any) is returned.

• 

All of the StringTools package commands treat strings as (null-terminated) sequences of 8-bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Examples

withStringTools:

aToByteArrayfoo

a102111111

(1)

lprinta

Array(1 .. 3,{1 = 102, 2 = 111, 3 = 111},datatype = integer[1],order = C_order)

FromByteArraya

foo

(2)

See Also

Array

convert[bytes]

StringTools

StringTools[Decode]

StringTools[Encode]