使用streamreader读取包含此“//”的行?

时间:2009-11-03 05:51:36

标签: c#-2.0 text-parsing

读取任何行从“//”开始的文本文件,省略此行并移至下一行。 输入文本文件具有一些单独的分区。逐行查找此标记。

3 个答案:

答案 0 :(得分:1)

如果您使用的是.Net 3.5,则可以将LINQ与包含在Stream Reader中的IEnumerable一起使用。这个很酷的部分,如果你可以使用where语句来提交statmens,或者更好的是使用带有正则表达式的select来修剪注释并将数据留在同一行。

//.Net 3.5
static class Program
{
    static void Main(string[] args)
    {
        var clean = from line in args[0].ReadAsLines()
                    let trimmed = line.Trim()
                    where !trimmed.StartsWith("//")
                    select line;
    }
    static IEnumerable<string> ReadAsLines(this string filename)
    {
        using (var reader = new StreamReader(filename))
            while (!reader.EndOfStream)
                yield return reader.ReadLine();
    }
}

...

//.Net 2.0
static class Program
{
    static void Main(string[] args)
    {
        var clean = FilteredLines(args[0]);
    }
    static IEnumerable<string> FilteredLines(string filename)
    {
        foreach (var line in ReadAsLines(filename))
            if (line.TrimStart().StartsWith("//"))
                yield return line;
    }
    static IEnumerable<string> ReadAsLines(string filename)
    {
        using (var reader = new StreamReader(filename))
            while (!reader.EndOfStream)
                yield return reader.ReadLine();
    }
}

答案 1 :(得分:0)

Class SplLineIgnorStrmReader:StreamReader  // derived class from StreamReader

SplLineIgnorStrmReader ConverterDefFileReadStream = null;
{
//created the Obj for this Class.
Obj = new SplLineIgnorStrmReader(strFile, Encoding.default);
}

public override string ReadLine()
        {
            string strLineText = "", strTemp;
            while (!EndOfStream)
            {
                strLineText = base.ReadLine();
                strLineText = strLineText.TrimStart(' ');
                strLineText = strLineText.TrimEnd(' ');
                strTemp = strLineText.Substring(0, 2);
                if (strTemp == "//")
                    continue;
                break;

            }
            return strLineText;

如果您想阅读文本文件并省略该文件中的任何注释(此处不包括“//”注释)。

答案 2 :(得分:0)

我不确定你到底需要什么,但是,如果你只想从流中的某些文本中过滤掉//行...请记住在使用后关闭流。

public string FilterComments(System.IO.Stream stream)
        {
            var data = new System.Text.StringBuilder();
            using (var reader = new System.IO.StreamReader(stream))
            {
                var line = string.Empty;
                while (!reader.EndOfStream)
                {
                    line = reader.ReadLine();
                    if (!line.TrimStart(' ').StartsWith("//"))
                    {
                        data.Append(line);
                    }
                }
            }

            return data.ToString();
        }