c#读取txt文本中的某一行

如果要读取文本中指定的某一行的信息,可以借助正则表达式的一个方法实现,实现原理就是将其分解成数组,然后直接读取数组中指定元素:

 private void fileSystemWatcher_Changed(object sender,FileSystemEventArgs e)
    {
        if (e.FullPath == @"C:\Users\Administrator\Desktop\二维码识别结果.txt")
        {
            print("监测到指定文件发生改变了");
            string path = @"C:\Users\Administrator\Desktop\二维码识别结果.txt";
            StreamReader sr = new StreamReader(path);
           // string st = string.Empty; //表示空字符
            string str = sr.ReadToEnd();
            string[] arrayStr = Regex.Split(str,"\r\n");
            lastMessage = arrayStr[arrayStr.Length - 3];//倒数第三行的string数据
            print(lastMessage);
            ObjectPoolInSea.isPathChanged = true;
            sr.Close();
        }
    }

你可能感兴趣的:(c#)