本帖最后由 爱吃桃子的猫 于 2014-4-17 09:32 编辑
1.循环方式提取- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Text.RegularExpressions;
- namespace 从字符串中提取所有数字
- {
- class Program
- {
- static void Main(string[] args)
- {
- string str = "000ssss111bbbbaaa22nnnn333mm4jjsh555suss666i777jjasj888kkao999kk10";
- char[] chr = str.ToCharArray();
- foreach (char result in chr)
- {
- if (result >= '0' && result <= '9')
- {
- Console.Write(result + " ");
- }
- }
- Console.ReadKey();
- }
- }
- }
复制代码
2.利用正则表达式提取
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Text.RegularExpressions;
- namespace 从字符串中提取所有数字
- {
- class Program
- {
- static void Main(string[] args)
- {
- string str = "000ssss111bbbbaaa22nnnn333mm4jjsh555suss666i777jjasj888kkao999kk10";
- string regex = @"\d+";
- MatchCollection mc = Regex.Matches(str, regex);
- foreach (var item in mc)
- {
- Console.WriteLine(item);
- }
- Console.ReadKey();
- }
- }
- }
复制代码
具体可以参考从一段文本中提取所有的数字
|