后台正则从字符串中提取数字

string str1="";

string str2="a12sd3asd4";

str1= Regex.Replace(str2,@"\D+", "");

str1的值为"1234"

你可能感兴趣的:(后台正则从字符串中提取数字)