取字符串中的数字
C#如何利用正则表达式取出字符串中的数字
例如:string str= "AAA123BB ";
现在要取出123
[解决办法]
try
string str = "AAA123BB ";
string result = string.Empty;
Match m = Regex.Match(str, @ "\d+ ");
if (m.Success)
{
result = m.Value;
}
发布时间: 2012-01-06 22:55:18 作者: rapoo
取字符串中的数字
C#如何利用正则表达式取出字符串中的数字
例如:string str= "AAA123BB ";
现在要取出123
[解决办法]
try
string str = "AAA123BB ";
string result = string.Empty;
Match m = Regex.Match(str, @ "\d+ ");
if (m.Success)
{
result = m.Value;
}