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.
我正在使用 EditPad,但通常 Perl 正则表达式适用于它。我试图在编辑板中只找到每行第一次出现的模式。
例如:在 947319949194 中搜索数字 1 我只希望找到第一个 1,而不是第二个。
我相信(在 Perl 中)每行的第一次出现1应该由正则表达式找到/^[^1\n\r]*(1)/m
1
/^[^1\n\r]*(1)/m