Project

General

Profile

$bfind » History » Revision 8

Revision 7 (Per Amundsen, 11/04/2019 04:34 PM) → Revision 8/15 (Per Amundsen, 07/24/2020 03:09 PM)

_Added in 1.9.0_ 

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

 Searches a &binvar for a matching value. 

 _The search is case-insensitive._ 

 *Parameters* 

 &binvar - The &binvar to search. 
 N - The position of the &binvar to start the search. 
 M - Numeric "ASCII":http://www.asciitable.com/ character(s) or text to search. 

 *Properties* 

 .text - Force a text search if the search text (M) is a number. 
 .textcs - Search case-sensitive. 
 .regex - *TODO* 

 *Example* 

 <pre> 
 ; Finds "test" starting from position 1. 
 //echo -a $bfind(&test, 1, test) 
 
 ; Finds character 32 (a space) from position 5. 
 //echo -a $bfind(&test, 5, 32) 

 ; Finds WAV from position 1. 
 //echo -a $bfind(&test, 1, 87 65 86) 
 </pre>