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.
我可以在正则表达式的后视中使用 Kleene plus 吗?
这个正则表达式有什么问题?
(?<=\[\[\w+\-).+(?=\]\])
如果我想在此文本中选择例如“你好”
avaavasda sfdsfdf [[anything-hello]] dsfsdf sfsdfdsf
不,你不能有一个变量后视,但你可以在 php 中做到这一点:
\[\[\w+-\K[^\]]+(?=]])
\K 就像失忆药(忘记你在我面前看到的一切)