visual studio 2010 - Regex search pattern excluding one file -
in visial studio 2010 want use regex pattern in built-in find , replace dialog, , want search in type of files *.cshtml, *.cs, *.js
except e.g. mycontroller.cs
file. how ?
something this?
\b^(?!mycontroller\.cs).+\.(cs(html)?|js)$\b
Comments
Post a Comment