LinqPad中的此代码在Regex中输出一串数字:
void Main()
{
string a = "1, 2, 3, 4, 5, 6, 7";
var myList = Regex.Match(a, @"^\s*((\d+)\s*,?\s*)+\s*$")
.Groups[2].Captures.ToList();
myList.Dump();
}
public static class EM
{
public static List<string> ToList( this CaptureCollection value)
{
var result = new List<string>();
foreach( var item in value)
{
result.Add( ((Capture) item).Value );
}
return result;
}
}
它的工作原理,但我主要关注的是只使用正则表达式将数字放在字符串数组中。是否有一些短暂而甜蜜的东西可以完成同样的事情?
编辑:
我正在使用正则表达式因为我需要解析这样的事情:
string a = "deptid = 1, 2, 3, 4, 5, 6, 7";
var myList = Regex.Match(a,
@"^\s*(?<field>[A-Za-z0-9]+)\s*(?<op>==?)\s*((\d+)\s*,?\s*)+\s*$")
.Groups[2].Captures.ToList();
答案 0 :(得分:8)
不是在Regex中编写此代码,为什么不尝试使用LINQ
?
试试这个:
List<string> yourList = a.Split(',').Select(sValue => sValue.Trim()).ToList();
但是如果你想坚持使用数组,那就用这个:
var yourList = a.Split(',').Select(sValue => sValue.Trim()).ToArray();