2015-01-31

jbanana: Badly drawn banana (Default)
2015-01-31 02:46 pm
Entry tags:

RE fun

I wanted to match filenames that don't end with .doc and I came up with [^.]*|.*\.(?!doc)[^.]*. Hmm, regexes are hard to read. Let's reformat...
(?x)    # comments and whitespace
[^.]*   # something with no dots
|       # ...or...
.*      # something...
\.      # ...with a dot...
(?!doc) # ...not followed by "doc"...
[^.]*   # ...but followed by soemthing with no dots