使用c#.net我们可以从word文件中读取一行或符号

发布于 2024-09-25 21:11:18 字数 93 浏览 4 评论 0原文

我们如何使用c#.net从任何类型的文件中读取一行或符号,我们可以读取键盘中可用的所有内容,但我们无法读取其他符号是否可以使用C#.net读取其他符号?可以帮我解决这个问题

how can we read a line or symbol from any type of file using c#.net, we can read all the things which is available in the keyboard but we can not read other symbols is it possible to read other symbols using C#.net please anybudy can help me on this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉溺在你眼里的海 2024-10-02 21:11:18

是的,我们可以:

using System;
using System.IO;

namespace IOTest
{
    public class program
    {
         public static void Main(string[] args)
         {
              using (Stream s = File.OpenRead(@"C:\AFile.file"))
              {
                   using (StreamReader sr = new StreamReader(s))
                   {
                        Console.WriteLine(sr.ReadLine());
                   }
              }
         }
    }
}

对于符号,您需要使用正则表达式或类似的东西......

Yes we can:

using System;
using System.IO;

namespace IOTest
{
    public class program
    {
         public static void Main(string[] args)
         {
              using (Stream s = File.OpenRead(@"C:\AFile.file"))
              {
                   using (StreamReader sr = new StreamReader(s))
                   {
                        Console.WriteLine(sr.ReadLine());
                   }
              }
         }
    }
}

For symbols, you would need to use Regex or something like that...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文