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.
我想知道是否有人可以帮助我?我正在努力编写正则表达式以匹配以下整个短代码:
[recipe_details_sc carbs='10g carbs' time='30 mins' serves='Serves 6']
我想选择整个简码。
谢谢你。
使用方括号作为边界,以便您搜索
开始括号;非括号(很多);端括号
唯一的痛苦是
两者加起来就很难阅读!
\[[^]]+\]
使用正则表达式测试页进行测试