| **Navigation:**  [[introduction.htm|Language Reference]] > 13 - Built-in Functions >====== ALL (return repeated characters) ====== | [[alias set alternate keycode .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[append add a new file record .htm|{{btn_next_n.gif|Next page}}]] | | || **ALL(**//string// [,//length//]**)** {{blk2blue.jpg|blk2blue.jpg}} | **ALL** | Returns repeated characters. | | //string// | A string expression containing the character sequence to be repeated. | | //length// | The length of the return string. If omitted the //length// of the return string is 255 characters. | The **ALL** procedure returns a string containing repetitions of the character sequence //string//. | **Return Data Type:** | STRING | **Example:** **Starline = ALL('*',25)    !Get 25 asterisks** **Dotline = ALL('.')        !Get 255 dots**