ToString()

Namespace ›› System ›› MfByteList ›› Methods ››
Parent Previous Next

ToString()

Gets a string representation of the object elements.
Overrides MfListBase.ToString()

OutPutVar := instance.ToString([returnAsObj, startIndex, count, format])

ToString([returnAsObj, startIndex, count, format])

Gets a string representation of the object elements

Parameters

returnAsObj

Optional boolean value. Default is false.
If true result is returned as instance of MfString; Otherwise result is returned as a var string.
Can be boolean var or instance of MfBool.

startIndex

Optional. Default value is 0. The zero-based starting index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.

count

Optional, the number of elements from StartIndex to include in the output string.
If omitted then starts at StartIndex and includes all elements to the end current instance.

format

Optional, the default value is 1.
Format is a Bitwise flag number, see example below
0 is Little-Endian format
1 is add hypen and format grouped into groups of two.
2 is Big-Endian fomat
4 is Append 0x to start of output, 4 is only applied if 1 is absent.

Returns

Returns string var or MfString instance representing object elements

Example

s := "23FE4A5CBA4C"
lst := MfByteConverter.FromHex(s)
MsgBox % lst.ToString()       ; 4C-BA-5C-4A-FE-23
MsgBox % lst.ToString(,,,1)   ; 4C-BA-5C-4A-FE-23
MsgBox % lst.ToString(,,,0)   ; 4CBA5C4AFE23
MsgBox % lst.ToString(,,,2)   ; 23FE4A5CBA4C
MsgBox % lst.ToString(,,,3)   ; 23-FE-4A-5C-BA-4C
MsgBox % lst.ToString(,,,4)   ; 0x4CBA5C4AFE23
MsgBox % lst.ToString(,,,5)   ; 0x4C-BA-5C-4A-FE-23
MsgBox % lst.ToString(,,,6)   ; 0x23FE4A5CBA4C
MsgBox % lst.ToString(,,,7)   ; 0x23-FE-4A-5C-BA-4C

MsgBox % lst.ToString(,2,4)   ; 5C-4A-FE-23
MsgBox % lst.ToString(,2,4,3) ; 4A-5C-BA-4C