e7d4db clean up regexes a bit

Authored and Committed by Mike McLean 8 years ago
    clean up regexes a bit
    
    .*\s* is equivalent to .* which doesn't seem to be intended
    
    (?:.*\s+)? will match the empty string, or arbitrary space-separated prefixes
    
        
file modified
+7 -11