正则表达式提取数字
摘要:/// /// 获取字符串中的数字 /// /// /// private int GetNumber(string par) { string strTempContent =par; strTempContent = System.Text.RegularExpressions.Regex.Replace(strTempContent, @"[^\d]*", "")...
阅读全文
posted @
2006-11-03 20:12
感動常在
阅读(9729)
推荐(0) 编辑