Community Patterns

Community Library Entry

0

Regular Expression
Created·2022-04-27 16:58
Flavor·.NET 7.0 (C#)

@"
(?s-i)\A(?!.*\bCopyright MyCompany Ltd. All Rights Reserved\b).+
"
gm
Open regex in editor

Description

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

Submitted by Kris Morness