Project

General

Profile

$bvar » History » Revision 2

Revision 1 (Per Amundsen, 02/28/2014 12:30 PM) → Revision 2/13 (Per Amundsen, 08/09/2015 05:43 AM)

_Added in 1.9.0_ 

 *$bvar(&binvar,N,M)* 

 Returns M "ASCII":http://www.asciitable.com/ 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":http://www.asciitable.com/ ascii values. 
 .word - TODO 
 .nword - TODO 
 .long - TODO 
 .nlong - TODO 

 *Example* 

 <pre> 
 ;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 
 </pre>