Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我还是新手使用正则表达式。我在 C# 的一个项目中,需要得到一个括号内的值。代码是<$ Execute ['WebF'] $>我想返回值 WebF。Agredeço 非常感谢您的帮助。
<$ Execute ['WebF'] $>
@编辑
我的代码<$Execute['WebF']$>没有空格
<$Execute['WebF']$>
感谢 doNet :)。返回值的代码\<\$+Execute+\['(?<DATA>\w+)'\]+\$\>
\<\$+Execute+\['(?<DATA>\w+)'\]+\$\>
\<\$\s+Execute\s+\['(?<DATA>\w+)'\]\s+\$\>
使用 ExplicitCapture 和 IgnoreCase 标志运行它。