用正则表达式截取字符串中的数字

用截取字符串中的数字,代码如下:

double d = 0;
            string str = "hello8023.1314world"; //要截取的字符串
            Match m = Regex.Match(str, "\\d+(\\.\\d+){0,1}");
            double.TryParse(m.Groups[0].ToString(), out d);
            Console.WriteLine(d);
            Console.ReadKey();

 

运行截图如下:

posted @ 2015-06-14 19:01  秋刀鱼No1  阅读(23342)  评论(1编辑  收藏  举报