日期:2014-05-19  浏览次数:20878 次

正则 如何将数字前面的0替换掉? 马上给分
RT

------解决方案--------------------
string a= "000123003 ";
a=Regex.Replace(a, "^0+ ", " ");