摘要: C# 中文分词算法(实现从文章中提取关键字算法)using System;using System.IO;using System.Text;using System.Collections;using System.Collections.Generic;using System.Text.RegularExpressions;namespace LumkitCms.Utils{ /// /// 分词类 /// public static class WordSpliter { #region 属性 private static string SplitChar = " " 阅读全文
posted @ 2014-03-11 19:05 日月心诚 阅读(1659) 评论(1) 推荐(0)