C# を使用して、フォーム フィード文字を含むテキスト ファイルを読み込んでいます。
フォーム フィード文字で始まる行にヒットしたら、何かをする必要があります。これを確認するにはどうすればよいですか?
例:
StreamReader reader = File.OpenText(filePath);
while (!reader.EndOfStream)
{
string currentLine = reader.ReadLine();
//check currentLine to see if it begins with a form feed character
}