标签:
private int CountWords(string text) { var count = Regex.Matches(text, @"[\u4e00-\u9fa5]|[a-zA-X]+").Count; return 30 + count; }
统计多少个汉字与字母
原文地址:http://www.cnblogs.com/shiningrise/p/4858938.html