Csharp写一个正则表达式,获取SD/13=RES中的13和RES,将13赋值给row,将RES赋值给Text
时间: 2023-12-14 11:39:37 浏览: 56
ZhengZeBiaoDaShi.rar_CSharp 正则表达式
可以使用如下正则表达式来匹配SD/13=RES:
```
^SD\/(?<row>\d+)=(?<Text>\w+)$
```
解释一下这个正则表达式:
- `^` 表示匹配字符串的开始位置
- `SD\/` 表示匹配 "SD/" 字符串
- `(?<row>\d+)` 表示匹配一个或多个数字,并将匹配结果命名为 "row"
- `=` 表示匹配等号字符
- `(?<Text>\w+)` 表示匹配一个或多个字母、数字或下划线字符,并将匹配结果命名为 "Text"
- `$` 表示匹配字符串的结束位置
下面是在 C# 中使用这个正则表达式的示例代码:
```csharp
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main(string[] args)
{
string input = "SD/13=RES";
string pattern = @"^SD\/(?<row>\d+)=(?<Text>\w+)$";
Match match = Regex.Match(input, pattern);
if (match.Success)
{
string row = match.Groups["row"].Value;
string Text = match.Groups["Text"].Value;
Console.WriteLine("row: " + row);
Console.WriteLine("Text: " + Text);
}
else
{
Console.WriteLine("No match found.");
}
}
}
```
输出结果为:
```
row: 13
Text: RES
```
阅读全文