string strExper = "A-10,B-12,C-13,D-14,E-15,F-16,G-17,H-18,I-19,J-20,K-21,L-23,M-24,N-25,O-26,";
strExper += "P-27,Q-28,R-29,S-30,T-31,U-32,V-34,W-35,X-36,Y-37,Z-38";
Regex regex = new Regex(@"A-\d\d");
Match matchResults = regex.Match(strExper);
string ss = matchResults.Value;
这个执行完的结果是A-10,但我想要的结果是10,我不知道如何写一个表达式来完成?请各位帮忙?