Initializer

init(repeating:count:)

Creates a new string representing the given string repeated the specified number of times. 指定された回数繰り返された与えられた文字列を表している新しい文字列を作成します。

Declaration 宣言

init(repeating repeatedValue: String, count: Int)

Parameters パラメータ

repeatedValue

The string to repeat. 繰り返すことになる文字列。

count

The number of times to repeat repeatedValue in the resulting string. repeatedValueを結果文字列の中で繰り返す回数。

Discussion 解説

For example, you can use this initializer to create a string with ten "ab" strings in a row. 例えば、あなたはこのイニシャライザを使うことで、10個の"ab"文字列をひとつの行に持つ文字列を作成できます。


let s = String(repeating: "ab", count: 10)
print(s)
// Prints "abababababababababab"

See Also 参照

Creating a String 文字列の作成