C# 正则表达式判断是否包含数字
时间: 2023-07-28 15:10:06 浏览: 337
javascript 正则 判断是否是数字的脚本
5星 · 资源好评率100%
可以使用正则表达式来判断字符串中是否包含数字。以下是一个示例代码:
```csharp
using System;
using System.Text.RegularExpressions;
class Program {
static void Main(string[] args) {
string input = "abc123";
Regex regex = new Regex(@"\d");
if(regex.IsMatch(input)) {
Console.WriteLine("字符串中包含数字");
}
else {
Console.WriteLine("字符串中不包含数字");
}
}
}
```
在上面的示例中,我们使用 `\d` 表示数字的正则表达式模式。然后使用 `IsMatch` 方法来检查输入字符串是否匹配该模式。如果匹配,就表示字符串中包含数字。
阅读全文