C#中的正则表达式

本文关键字:正则表达式 | 更新日期: 2023-09-27 17:57:50

我有一个这样的字符串:

[variable = value][variable2=value2][Some text inside]

我需要制作一个正则表达式,它可以给我分组匹配,所以在我的MathCollection中我应该有

matches[0] = [variable = value]
matches[1] = [variable2=value2]
matches[2] = [Some text inside]

有人能帮我吗?

提前谢谢。

C#中的正则表达式

类似这样的东西:

('[.*?'])

http://regexr.com?2trpv

Regex getStuff = new Regex("('[.*?'])");
MatchCollection matches = getStuff.Matches(inputString);

一个线性函数,它为您提供所需字符串的数组:

var strings = Regex.Matches(input, @"('[.*?'])").Cast<Match>().Select(match => match.ToString()).ToArray();