6

How can you create a String of a given length consisting of the same character - without using a loop?

Ie: create a String 10 characters in length where each character is an asterisk: **********

Similar to this approach in Java: new String(new char[n]).replace("\0", s);

Community
  • 1
  • 1
Marcus Leon
  • 53,069
  • 115
  • 287
  • 420

1 Answers1

24

There's a String initializer for that:

init(repeating repeatedValue: String, count: Int)

Description
Creates a new string representing the given string repeated the specified number of times.

let string = String(repeating: "*", count: 10)
vacawama
  • 141,339
  • 29
  • 256
  • 279