Project

General

Profile

Actions

$bvar » History » Revision 4

« Previous | Revision 4/13 (diff) | Next »
Per Amundsen, 08/12/2015 09:34 AM


Added in 1.9.0

$bvar(&binvar,N,M)

Returns M ASCII values from a &binvar starting from the Nth byte.

Parameters

&binvar - The &binvar to use.
N - Position to start retrieving bytes.
M - Numbers of bytes to get.

Properties

.text - Returns plain text instead of ASCII values.
.word - TODO
.nword - TODO
.long - TODO
.nlong - TODO

Example

; Returns the length of the binary variable.
//echo -ag $bvar(&binvar,0)        

; Returns ASCII value at position N.
//echo -ag $bvar(&binvar,1)

; Returns ASCII values from 5 to 8.
//echo -ag $bvar(&binvar,5,3)   

; Returns plain text from 5 to 8 up to the first zero character.
//echo -ag $bvar(&binvar,5,3).text

Updated by Per Amundsen over 8 years ago · 4 revisions

Also available in: PDF HTML TXT