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.
我想从字符 P 匹配 P 之后和换行符之间的所有章程。
我尝试的是“P.*\n”,它显然仍然匹配 P,但我想要 p 之后和换行符之前的所有字符。
有人知道吗?
你可以试试这个:
(?<=P).*(?!\n)
P 的正向后视,然后换行的负向前瞻。
编辑了我的原始答案。
只需使用:
p(.*)
确保您没有使用“多行”正则表达式选项。
怎么样:
P(.*?)\n
您想要的字符在第 1 组中
你可以试试:
来自正则表达式英雄