StringReader.ReadLine メソッド

定義

現在の文字列から 1 行分の文字を読み取り、そのデータを文字列として返します。

public:
 override System::String ^ ReadLine();
public override string ReadLine ();
public override string? ReadLine ();
override this.ReadLine : unit -> string
Public Overrides Function ReadLine () As String

戻り値

現在の文字列の次の行。文字列の末尾に到達した場合は null

例外

現在のリーダーが閉じています。

返却された文字列にバッファーを割り当てるには、メモリが不足しています。

このコード例は、StringReader クラスのために提供されている大規模な例の一部です。

// From textReaderText, create a continuous paragraph 
// with two spaces between each sentence.
   String^ aLine;
String^ aParagraph;
StringReader^ strReader = gcnew StringReader( textReaderText );
while ( true )
{
   aLine = strReader->ReadLine();
   if ( aLine != nullptr )
   {
      aParagraph = String::Concat( aParagraph, aLine,  " " );
   }
   else
   {
      aParagraph = String::Concat( aParagraph,  "\n" );
      break;
   }
}

Console::WriteLine(  "Modified text:\n\n{0}", aParagraph );
// From textReaderText, create a continuous paragraph
// with two spaces between each sentence.
string aLine, aParagraph = null;
StringReader strReader = new StringReader(textReaderText);
while(true)
{
    aLine = strReader.ReadLine();
    if(aLine != null)
    {
        aParagraph = aParagraph + aLine + " ";
    }
    else
    {
        aParagraph = aParagraph + "\n";
        break;
    }
}
Console.WriteLine("Modified text:\n\n{0}", aParagraph);
' From textReaderText, create a continuous paragraph 
' with two spaces between each sentence.
Dim aLine, aParagraph As String
Dim strReader As New StringReader(textReaderText)
While True
    aLine = strReader.ReadLine()
    If aLine Is Nothing Then
        aParagraph = aParagraph & vbCrLf
        Exit While
    Else
        aParagraph = aParagraph & aLine & " "
    End If
End While
Console.WriteLine("Modified text:" & vbCrLf & vbCrLf & _ 
    aParagraph)

注釈

このメソッドは、 メソッドを TextReader.ReadLine オーバーライドします。

行は、一連の文字の後に改行 ("\n")、キャリッジ リターン ("\r")、キャリッジ リターンの直後に改行 ("\r\n")、またはストリームの終了マーカーとして定義されます。 返される文字列には、終了復帰または改行は含まれません。 返される値は、 null ストリームの終了マーカーに達した場合です。 つまり、最後に読み取った行とストリームの終わりマーカーの間に何もない場合、メソッドは を返します null

現在のメソッドが を OutOfMemoryExceptionスローする場合、基になる文字列内のリーダーの位置は、メソッドが読み取ることができた文字数だけ進みますが、内部 ReadLine バッファーに既に読み込まれている文字は破棄されます。 文字列内のリーダーの位置を変更できないため、既に読み取られた文字は回復不能であり、 を再初期化 StringReaderすることによってのみアクセスできます。 このような状況を回避するには、 メソッドを Read 使用し、事前に割り当てられたバッファーに読み取り文字を格納します。

次の表に、その他の一般的な I/O タスクまたは関連する I/O タスクの例を示します。

目的 参照項目
テキスト ファイルを作成します。 方法: テキストのファイルへの書き込み
テキスト ファイルに書き込みます。 方法: テキストのファイルへの書き込み
テキスト ファイルから読み取ります。 方法: ファイルからのテキストの読み取り
ファイルにテキストを追加します。 方法: ログ ファイルを開いて情報を追加する

File.AppendText

FileInfo.AppendText
ファイルのサイズを取得します。 FileInfo.Length
ファイルの属性を取得します。 File.GetAttributes
ファイルの属性を設定します。 File.SetAttributes
ファイルが存在するかどうかを確認します。 File.Exists
バイナリ ファイルから読み取ります。 方法: 新しく作成されたデータ ファイルに対して読み書きする
バイナリ ファイルに書き込みます。 方法: 新しく作成されたデータ ファイルに対して読み書きする

適用対象

こちらもご覧ください