正则表达式提取数字
作者:Eve Cole
更新时间:2009-07-01 16:07:15
/// <摘要>
/// 获取字符串中的数字
/// 摘要>
/// <参数名称=“par”>参数>
/// <返回>返回>
私有 int GetNumber(字符串 par)
{
字符串 strTempContent =par;
strTempContent = System.Text.RegularExpressions.Regex.Replace(strTempContent, @"[^d]*", "");
返回 Convert.ToInt32(strTempContent);
}