标签: c# regex
string subject = "Re: Customer request [#11#]";
我想从上面的字符串中获取 [#11#] 。在运行时而不是11,可以有任何数字,例如12,13,14等
请建议我使用适当的Regex来获取此输出。
答案 0 :(得分:-2)
这样的事情:\[#\d{0,}#\]
\[#\d{0,}#\]
你可以在https://regex101.com/r/uA8fX9/3