longwordarray(
DATA
,
INDEX
)

The longwordarray( function extracts a value from an array of 32 bit longwords (see Binary Data).


Parameters

This function has two parameters:

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

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


Description

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

longwordarray(longword(3)+longword(12)+longword(87),3) ☞ 87

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

Note: This function is equivalent to:

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

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.