Re: [pcre-dev] [Bug 1380] Report match when doesn't match an…

トップ ページ
このメッセージを削除
著者: Zoltán Herczeg
日付:  
To: Jean-Christophe Deschamps
CC: pcre-dev
題目: Re: [pcre-dev] [Bug 1380] Report match when doesn't match and vice-versa
Hi,

> How would you make a pattern to extract lines that violate the format?


This should be really easy using negative assertions. E.g: a line must match /^PATTERN$/ (non-multiline match). A non-matching line can be listed as:

/^(?!PATTERN$).*/

Regards,
Zoltan