正規表示式擷取數字
作者: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);
}