Expressão regular para extrair números
Autor:Eve Cole
Data da Última Atualização:2009-07-01 16:07:15
///
/// 获取字符串中的数字
///
///
///
private int GetNumber(string par)
{
string strTempContent =par;
strTempContent = System.Text.RegularExpressions.Regex.Replace(strTempContent, @"[^d]*", "");
retornar Convert.ToInt32(strTempContent);
}