Project

General

Profile

$mid » History » Revision 2

Revision 1 (Per Amundsen, 08/11/2015 10:24 AM) → Revision 2/3 (Per Amundsen, 12/24/2019 12:47 PM)

_Added in 1.8.10_ _1.8.10_ 

 *$mid(text,S,N)* 

 Returns N characters starting at position S in text. 

 *Parameters* 

 text - The text to substring. 
 S - The starting position. 
 N - Number of characters to substring. 

 *Example* 

 <pre> 
 ; Get '6' characters starting at position '6' in the text 'Hello World'. 
 //echo -ag $mid(Hello World,6,6)  
 </pre>