A
ajitgoel
Hi;
I need some simple help with my regular expressions.
I want to search my input text for all the boolean variables which do
not start with bln. i.e I want to match "bool followed by 1 or more
spaces followed by text other than bln" in my input text.
Eg:
1. private bool dispose; should be highlighted
2. private bool blndispose; should be not be highlighted
I have written the following regular expression text for this:
bool\s+[^bln] but it highlights both 1 and 2. Where could I be going
wrong??
Kind Regards;
Ajit Goel
I need some simple help with my regular expressions.
I want to search my input text for all the boolean variables which do
not start with bln. i.e I want to match "bool followed by 1 or more
spaces followed by text other than bln" in my input text.
Eg:
1. private bool dispose; should be highlighted
2. private bool blndispose; should be not be highlighted
I have written the following regular expression text for this:
bool\s+[^bln] but it highlights both 1 and 2. Where could I be going
wrong??
Kind Regards;
Ajit Goel