Regex - match all .cs files, but not designer generated files?
Posted
by Jake Petroules
on Stack Overflow
See other posts from Stack Overflow
or by Jake Petroules
Published on 2010-06-07T17:33:52Z
Indexed on
2010/06/07
17:42 UTC
Read the original article
Hit count: 262
regex
I've got a regex pattern which I am using to match files having particular extensions. However I do NOT want it to match any .Designer.cs files; how would I implement such into my pattern?
\.(bat|cs|java|html|etc)$
© Stack Overflow or respective owner