How to repeat a string n times in Swift
In this tutorial, we are going to learn about how to repeat a string n times in Swift language.
Repating a string n times
To repeat a string n number of times, we can use the built-in String()
initializer syntax by passing two arguments.
The first argument is the string you need to repeat and the second argument is number of times you need to repeat that string.
Here is an example, that repeats the string ok
for 4 times:
let str = "ok"
let repeatStr = String(repeating: str, count: 4)
print(repeatStr)
Output:
"okokokok"