摘要: 案例是要实现一个对文档文本进行字符处理,并能筛选分离出文档中的单词,且可以以序列索引来对其中的单词进行访问和修改完整代码View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 索引2{ class Program { static void Main(string[] args) { Document mydoc = new Document("Hello,I am a Coder!")... 阅读全文
posted @ 2012-06-08 12:38 MadKeX 阅读(305) 评论(0) 推荐(0) 编辑