gpt4 book ai didi

c# - 将 MatchCollection 转换为字符串数组

转载 作者:IT王子 更新时间:2023-10-29 03:42:20 27 4
gpt4 key购买 nike

有没有比这更好的方法将 MatchCollection 转换为字符串数组?

MatchCollection mc = Regex.Matches(strText, @"\b[A-Za-z-']+\b");
string[] strArray = new string[mc.Count];
for (int i = 0; i < mc.Count;i++ )
{
strArray[i] = mc[i].Groups[0].Value;
}

附言:mc.CopyTo(strArray,0) 抛出异常:

At least one element in the source array could not be cast down to the destination array type.

最佳答案

尝试:

var arr = Regex.Matches(strText, @"\b[A-Za-z-']+\b")
.Cast<Match>()
.Select(m => m.Value)
.ToArray();

关于c# - 将 MatchCollection 转换为字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11416191/

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