Useful set of regular expressions

From Notes_Wiki

Home > Regular expressions > Useful set of regular expressions

Search in un-commented lines

To search for a pattern in uncommented lines one can use expression of the form

^[^\#] ... $

For example to search for 10. in uncommented lines one can use:

^[^\#].*10\..*$