我正在尝试创建一个正则表达式,以帮助 Eclipse 的搜索找到包含start(
注释行之外的所有行。
也就是说,找到如下行:
is not sufficient because it doesn't guarantee that start(b) is
但不是这样的行:
* is not sufficient because it doesn't guarantee that start(b) is
我已经能够想出正则表达式(\s*?)(?!\*)(.*)(start\()(.*$)
,但它找到了两条线。
如何排除以*
(可能在一些空格之后)开头的行并包含没有该行的行?