C# 从字符串中取出英文字母

     string fid = context.Request["value2"];//fid=FCT1234
        Regex re = new Regex(@"[a-zA-Z]+");
        Match m = re.Match(fid);
        string fixtype = m.Value;//fixtype=FCT
原文地址:https://www.cnblogs.com/vichin/p/6116603.html