汉字的相关处理

1.去除字符中,汉字的空格

target = Regex.Replace(target, "([u4E00-u9FA5]+)((\s)+)", "$1");//去除汉字中的空格

2.繁体汉字与简体汉字的转换操作

  引用ChineseConverter.dll  

ChineseConverter.Convert(CompanyCNName, ChineseConversionDirection.TraditionalToSimplified);

3.汉字处理相关dll

  Stanford CoreNLP

  相关link:

  https://sergey-tihon.github.io/Stanford.NLP.NET/

  https://nlp.stanford.edu/software/stanford-dependencies.shtml

原文地址:https://www.cnblogs.com/panpanwelcome/p/7404518.html