gpt4 book ai didi

c# - 如何从 MatchCollection 中获取唯一元素

转载 作者:行者123 更新时间:2023-11-30 13:14:56 26 4
gpt4 key购买 nike

我知道 MatchCollection 中始终只有一个元素:

Regex reg = new Regex("1234");
MatchCollection matches = reg.Matches("fjasij 1234 gdsgds");
Console.WriteLine(matches.Count);
string s = ?;

如何在没有foreach循环的情况下将这个元素赋值给变量string s

最佳答案

为什么要使用 MatchCollection 呢?只需获取一个 Match:

var match = reg.Match("fjasij 1234 gdsgds");

关于c# - 如何从 MatchCollection 中获取唯一元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21126569/

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