黑马程序员技术交流社区

标题: 从一段文本中提取所有的数字。 [打印本页]

作者: 我的专属    时间: 2014-3-26 10:53
标题: 从一段文本中提取所有的数字。
从一段文本中提取所有的数字???????
作者: zhl406893081    时间: 2014-3-26 11:00
正则表达式

string 类型的str用来存储文本
string regex = @"\d+";
MatchCollection mc = Regex.Matches(str,regex);
后面foreach循环输出.

作者: threederek    时间: 2014-3-26 11:21
  1. MatchCollection matches = Regex.Matches("888你好88再见123213", @"\d+(\.\d+)?");
  2.             foreach (var item in matches)
  3.             {
  4.                 Console.WriteLine(item);
  5.             }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2