日期:2014-05-17  浏览次数:20703 次

X*Y+Z 如何用正则表达式求出x,y,z
X*Y+Z 如何用正则表达式分别求出x,y,z

------解决方案--------------------
string[] numbers = Regex.Matches("1+1*2", @"[a-zA-Z0-9]+").Cast<Match>().Select(x => x.Value).ToArray();