什么是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/