Discussion:
Find in files in Visual Studio: all lines in files that contain 'abc' but don't contain 'xyz'
(too old to reply)
Alex Vinokur
2011-02-02 09:04:54 UTC
Permalink
Hi,

Visual Studio 2005

I need to find all lines in files that contain 'abc' but don't contain
'xyz'.

Any suggestion?

Thanks,

Alex
Alex Vinokur
2011-02-02 11:01:26 UTC
Permalink
It should work something like grep in Unix"
grep abc *.* | grep -v xyz
Simon Trew
2013-01-15 08:51:23 UTC
Permalink
This post might be inappropriate. Click to display it.
Loading...