- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 19
string_repeat
        CryoEagle edited this page Dec 26, 2018 
        ·
        2 revisions
      
    Returns a copy of a given string repeated a given number of times.
string_repeat(str, count)| Argument | Description | 
|---|---|
| stringstr | The string to repeat | 
| stringcount | The number of times to repeat the string | 
Returns: string
This function simply returns the same string repeated a given number of times over itself.
str1 = 'Hello World';
str2 = string_repeat(str1, 3);This will set str2 to 'Hello WorldHello WorldHello World'.
Back to strings