gpt4 book ai didi

c# - 结合正则表达式和linq在c#中拆分字符串

转载 作者:行者123 更新时间:2023-11-30 20:41:37 24 4
gpt4 key购买 nike

我的示例代码如下所示:

string name = "[name1][name2][name3][name4][name5]";

Match match = Regex.Match(name, @"\w+");
string[] _name = new string[5];
int i = 0;

while (match.Success)
{
_name[i] = match.Value;
i++;
match = match.NextMatch();
}
match = null;

你能帮我通过结合正则表达式和 linq 将代码转换为 1 行吗?

可能的结果如下:string[] _name = ...

最佳答案

你可以使用

var result = Regex.Matches("[name1][name2][name3][name4][name5]", @"\w+")
.Cast<Match>()
.Select(p => p.Value).ToList();

或者代替 Cast , 你可以使用 OfType .参见 MSDN :

The OfType<TResult>(IEnumerable) method returns only those elements in source that can be cast to type TResult. To instead receive an exception if an element cannot be cast to type TResult, use Cast<TResult>(IEnumerable).

结果:

enter image description here

关于c# - 结合正则表达式和linq在c#中拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32228017/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com