I am trying to figure out how I ignore empty lines with spaces but no content. I have the following
^(\s*)SetEnv
Which matches what I am looking for fine, but it also matches empty lines with just spaces
So
SetEnv blah // matches
// also matches
// doesn't match
^ *SetEnv*with+(means one or more)