我需要检查所有不在字符串末尾的新行,但如果它们后面没有Package
,我正在使用 Notepad++。
如下例所示。我需要匹配第一句之间的行without having to edit
,后面的More information
.
行代表这个文件中的新行。但是后面的新行Package:...
非常好,我想忽略这些。
.
without having to edit xorg.conf every time.
More information about X.Org can be found at:
<URL:http://www.X.org>
.
This package is built from the X.org xf86-input-vmmouse driver module.
Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Package: libxml-libxml-perl
Status: install ok installed
这可能吗?
\n(?!\npackage)
我已经尝试过了,这在一定程度上有效。但不是为了我所追求的。