gpt4 book ai didi

c# - C# 中的正则表达式查找类似 "x-[some_string]"的匹配项

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:18 25 4
gpt4 key购买 nike

C# 中用于在文本中查找匹配项的正则表达式是什么以“x-[”开头并以“]”结尾?

我试过这样的:

Regex urlRx = new Regex(@"^x-[.*]$", RegexOptions.IgnoreCase);

最佳答案

简单:

x-\[([^]]+)\]
# that is: look for x-[ literally
# capture and save anything that is not a ]
# followed by ]

参见 a demo on regex101.com .

关于c# - C# 中的正则表达式查找类似 "x-[some_string]"的匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36450282/

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