C# 程序来匹配字符串中的所有数字


为了匹配字符串中所有数字,使用 C#的正则表达式。

首先,设置一个包含数字的字符串 −

string str = "These are my marks: 90 out of 100!";

使用以下正则表达式来获取字符串中的数字 −

@"\d+"

以下是代码 −

示例

 真实演示

using System;
using System.Text.RegularExpressions;
namespace Demo {
   class Program {
      private static void showMatch(string text, string expr) {
         Console.WriteLine("The Expression: " + expr);
         MatchCollection mc = Regex.Matches(text, expr);
         foreach (Match m in mc) {
            Console.WriteLine(m);
         }
      }
      static void Main(string[] args) {
         string str = "These are my marks: 90 out of 100!";
         Console.WriteLine("Getting digits from a string...");
         showMatch(str, @"\d+");
         Console.ReadKey();
      }
   }
}

输出

Getting digits from a string...
The Expression: \d+
90
100

更新于:2020 年 6 月 22 日

343 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告