English 中文(简体)
每次读取文本文件一个字符时检测新行
原标题:Detecting newline when reading text file one character at a time
  • 时间:2012-05-28 14:06:16
  •  标签:
  • c#

目标文件 :

Hello
World

守则:

if (file != null)
{
    //Read file one character at a time
    StreamReader reader;
    reader = new StreamReader(file);
    do
    {
        int s = reader.Read();
        char sC = (char)s;
        if (sC.Equals(Environment.NewLine))
        {
            Console.WriteLine("+1");
        }
        Console.WriteLine((char)s);
    } while (!reader.EndOfStream);
    reader.Close();
    reader.Dispose();
}

产出:

H
e
l
l
o




W
o
r
l
d

所以 (sC.Equals (Environment.NewLine)) 显然在每次读取一个字符时无法检测到平台的独立新线 。 我该怎么做?

最佳回答

来试试这个吧

if (sC.Equals( 
 ))

If you are sure there will always be a after the then you can swallow it with another reader.Read(); call. Example:

if (sC.Equals( 
 )) {
   reader.Read()
   Console.WriteLine("+1");
}
问题回答

That s because Environment.NewLine is a String consisting of (depends on your environment, on Windows platforms it s ) - which are the Carrige Return and New Line characters - it s a pair that usually defines a New line.

So comparing a character (which can either be or ) to will always yield false

Instead, as mentioned in @jurgen d s answer, try to compare to .

Environment.NewLine is actually two characters:

您真的需要一次读取一个字符吗? 您是否更喜欢使用 < a href=" http://msdn.microsoft.com/ en- us/library/ system.io. stringreder.aspx" rel = "nofollow"\\ code > StringReader , 并使用 ReadLine ()?

easy way to remove

        String text = "test

";
        if (text[text.Length - 1] == 10 && text[text.Length - 2] == 13)
            text= text.Substring(0, text.Length - 2);

用这个...

if (sC.Equals( 
 ))

As comes before in your case.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签