Initializer

init(repeating:count:)

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

Declaration

init(repeating repeatedValue: Character, count: Int)

Parameters

repeatedValue

The character to repeat.

count

The number of times to repeat repeatedValue in the resulting string.

Discussion

For example, use this initializer to create a string with ten "0" characters in a row.

let zeroes = String(repeating: "0" as Character, count: 10)
print(zeroes)
// Prints "0000000000"

Relationships

See Also

Creating a String

init()

Creates an empty string.

init(Character)

Creates a string containing the given character.

init<S>(S)

Creates a new string containing the characters in the given sequence.

init<S>(S)

Creates a new instance of a collection containing the elements of a sequence.

init<S>(S)

Creates a new string containing the characters in the given sequence.

init(Substring)

Creates a new string from the given substring.

init(repeating: String, count: Int)

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