Function 関数

readLine(strippingNewline:)

Returns a string read from standard input through the end of the current line or until EOF is reached. 標準入力から現在の行の終わりまでまたはEOFが到達されるまで読み込んだ文字列を返します。

Declaration 宣言

func readLine(strippingNewline: Bool = true) -> String?

Parameters パラメータ

strippingNewline

If true, newline characters and character combinations are stripped from the result; otherwise, newline characters or character combinations are preserved. The default is true. trueならば、改行文字および文字組み合わせは結果から剥ぎ取られます;そうでなければ、改行文字および文字組み合わせは保全されます。省略時ではtrueです。

Return Value 戻り値

The string of characters read from standard input. If EOF has already been reached when readLine() is called, the result is nil. 標準入力から読み込まれた一続きの文字。readLine()が呼ばれるときEOFがすでに到達されているならば、結果はnilです。

Discussion 解説

Standard input is interpreted as UTF-8. Invalid bytes are replaced by Unicode replacement characters. 標準入力は、UTF-8として解釈されます。無効なバイトは、ユニコード代替文字で置き換えられます。

See Also 参照

Command Line Input コマンドライン入力