gpt4 book ai didi

c# - 使用正则表达式查找字符串中的所有匹配项

转载 作者:太空狗 更新时间:2023-10-29 18:13:09 25 4
gpt4 key购买 nike

<分区>

我的输入是

This is <a> <test> mat<ch>.

输出应该是

1. <a>
2. <test>
3. <ch>

我试过了

string input1 = "This is <a> <test> mat<ch>.";
var m1 = Regex.Matches(input1, @"<(.*)>");
var list = new List<string>();
foreach (Match match in m1)
{
list.Add(match.Value);
}

返回 <a> <test> mat<ch>作为列表中的单个元素。

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