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. repeatedValueを結果文字列の中で繰り返す回数。

Discussion 解説

For example, use this initializer to create a string with ten "0" characters in a row. 例えば、このイニシャライザを使うことで、10個の"0"文字を1行に持つ文字列を作成してください。


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

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Creating a String 文字列の作成