主题:如何在文章中找到数字串!!!!!!!!!!!!!!!!
liuwei424
[专家分:30] 发布于 2007-07-04 08:36:00
这里有一串字符串“中华人民共和国于1949年成立”,或这个句子中含有其他的数字,我用什么方法能把这些数字整个的提取出来。谢谢。
[em1]
回复列表 (共1个回复)
沙发
longlong16 [专家分:10670] 发布于 2007-07-04 12:57:00
string str = "sdfsdfdfefew123344eerere"
string sub = "";
foreach(char c in str)
{
if((c >= '0')&&(c<= '9'))
sub += c;
}
Response.Write(sub);
我来回复