asp.net|技巧|正则/// <summary>
/// 获取字符串中的数字
/// </summary>
/// <param name="par"></param>
/// <returns></returns>
private int GetNumber(string par)
{
string strTempContent =par;
strTempContent = System.Text.RegularExpressions.Regex.Replace(strTempContent, "[^\d]*", "");
return Convert.ToInt32(strTempContent);
}
ASP.NET技巧:正则表达式提取数字
80酷酷网 80kuku.com