any way to do regex search thru lines of asp.net code?

  • Thread starter Thread starter COHENMARVIN
  • Start date Start date
C

COHENMARVIN

I want to search systematically through my asp.net code for every line
that contains
Session("anything") = 0
But 'anything' varies, and my program is very large. Is there a way
to do regular expression searches in visual studio, or maybe via some
other program that can scan through the pages?
Thanks,
Marv
 
open the "find options" in the find dialog, there you will find regex support.

-- bruce (sqlwork.com)
 
Back
Top