longlongwordarray(
DATA
,
INDEX
)

The longlongwordarray( function extracts a value from an array of 64 bit longlongwords (see Binary Data).


Parameters

This function has two parameters:

data – binary data containing one or more longlongword (64-bit) values. See Binary Data for more information on this type of data.

index – position of the desired longlongword, starting from 1.


Description

This function extracts a value from an array of longlongwords. This is not a Panorama style delimited array but a C style array of 64 bit values. The result is an integer.

longlongwordarray(longlongword(3948)+longlongword(42098)+longlongword(112),2) ☞ 42098

See Binary Data for more information about this type of data.

Note: This function is equivalent to:

binaryvalue((thetext)[1+(index-1)*8;8])

See Also


History

VersionStatusNotes
10.0UpdatedNew in this version.