Hey guys,
I currently use this to correctly capitalize certain words:
FIELD: _ALL
REGEX: (?<!-)\s(a|an|and|as|at|by|but|for|in|of|on|or|out|the|to)(?=\s)
REPLACE MATCHES WITH: $lower($0)
I also use this to capitalize each first and last word regardless of what it is:
FIELD: _ALL
REGEX: \b(\l)(\w*?)$
REPLACE MATCHES WITH: $upper($1)$2
CASE SENSITIVE COMPARISON: Yes
I'm using this to capitalize letters after certain characters:
FIELD: ALL
CASE CONVERSION: Mixed
WORDS BEGIN FROM/AFTER ANY OF: (-.[
The problem is this also names my files .Mp3 rather than .mp3, I need a way to tell it to not capitalize .mp3.
I also need a way to search for exactly what I type in the filter (case sensitive), at the moment it seems to throw a bunch of results back regardless of the case I use in the search.
Many thanks.
PS: Good to see the forums back