Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2022-04-27 16:59
Flavor·PCRE2 (PHP)

/
(?s-i)\A(?!.*\QCopyright MyCompany Ltd. All Rights Reserved\E).+
/
gm
Open regex in editor

Description

Detects one match per file if that file is missing the expected copyright text. This works with JetBrains Rider IDE. If you are using Visual Studio (.NET), you can replace the \Q and \E with \b

Submitted by Kris Morness