我有一个这样的字符串:
string subjectString = "one two \"three four\" five \"six seven\"";
我想将它转换成这样的 StringCollection:
- 一
- 二
- 三四
- 五
- 六七
有没有办法在 asp.net C# 2.0 中使用 Regex 类来实现这一点,就像这样?
string subjectString = "one two \"three four\" five \"six seven\"";
System.Collections.Specialized.StringCollection stringCollection = new System.Collections.Specialized.StringCollection();
foreach (System.Text.RegularExpressions.Match match in System.Text.RegularExpressions.Regex.Matches(subjectString, "some_regex_here"))
{
stringCollection.Add(match.Value);
}