Project

General

Profile

$str » History » Revision 3

Revision 2 (Per Amundsen, 06/28/2014 03:42 PM) → Revision 3/4 (Per Amundsen, 08/12/2015 10:47 PM)

_Added in 1.9.0_ 

 *$str(text,N)* 

 Returns text repeated N times. 

 _The The repeated text can be no longer than 4151 characters._ characters. 

 *Parameters* 

 text - The text to repeat. 
 N - Number of times to repeat. 

 *Example* 

 <pre> 
 ; Prints the text 'text' repeated 4 times. ;Prints 'testtesttesttest' 
 //echo -ag $str(test, 4) 
 </pre>