过滤汉字
Regex.Replace(inputStr,@"[u4e00-u9fa5]",string.Empty);
提取汉字:
Regex.Replace(inputStr,@"[^u4e00-u9fa5]",string.Empty);//注意这里多了个^符号