I was trying to search for “.IsSet”, but not “DocumentState.IsSet”, in VS 2008 using regular expression search. How do I compose the regular expression?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
will match all
.IsSetinstances that do not followDocumentState. To match exactly.IsSetbut not.IsSetFoo, you can either useor check the Match whole word option.
See Regular Expressions (Visual Studio) for a list of regular expression tokens supported in the Visual Studio search.