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

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -