fcastro
1
Hi everyone,
Wondering if someone knew how to capitalize the first letter after a quotation mark.
For example:
original file; Jay - Hustler "dj clue remix"
correct output: Jay - Hustler "Dj clue remix"
I think it has to do with a regualr expression but can't figure it out. 
dano
2
Action type: Replace with regular expressions
Field: (your choice)
Regular expression: "(\l)
Replace matches with: "$upper($1)
[x] case-sensitive comparison
fcastro
3
Dano thanks for the formula again. Perfecto 