1、去掉中文字符
    Regex reg = new Regex(@”[\u4e00-\u9fa5]”);
    string newStr= reg.Replace(str,””);