标题:请指点一二...
只看楼主
落木萧萧
该用户已被删除
 问题点数:0 回复次数:2 
请指点一二...
提示: 作者被禁止或删除 内容自动屏蔽
搜索更多相关主题的帖子: 帮忙修改一下. 
2008-06-09 21:52
sunkaidong
Rank: 4
来 自:南京师范大学
等 级:贵宾
威 望:12
帖 子:4496
专家分:141
注 册:2006-12-28
得分:0 
using System;
using
class A
{
    public static void Main(string[] args)
    {
        FileStream fs = new FileStream(@"f:\\test.txt", FileMode.Open, FileAccess.Read);
        StreamReader sr = new StreamReader(fs);
        sr.BaseStream.Seek(0, SeekOrigin.Begin);
        string str1 = sr.ReadLine();
        string[] str2 = new string[10];
        int x;
        int Count = 0;
        while (str1 != null)
        {
            
            x = str1.IndexOf("T");
            if (x < 0) x = 0;
            str2[Count] = str1.Substring(x, 3);
            Count++;
            str1 = sr.ReadLine();
        }

        for (int i = 0; i < Count; i++)
        {
            Console.WriteLine(str2[i]);
        }
      
    }
}

学习需要安静。。海盗要重新来过。。
2008-06-09 22:17
落木萧萧
该用户已被删除
得分:0 
承蒙指教,感激不尽.
提示: 作者被禁止或删除 内容自动屏蔽
2008-06-10 09:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-218371-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.232508 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved