First of all, this program is great. Thanks for working so hard.
Anyway, this is what I have a problem with.
I am trying to convert cases of tags to mixed tags.
Example)
I AM SO gooD And a Dog of John -> I Am So Good And A Dog Of John
:This is how you get when you use mixed conversion.
I do not want some of words to convert to Mixed cases, such as A, An, Of.
So my target is something like this...
Target)
I Am So Good and a Dog of John
I put this regular expression after mixed case conversion
Regex (.*) (a |the |of |to |an |and ) and replace with $1 \l$2
But this doesn't work as I wanted it to be
Result)
I Am So Good And A Dog of John
The expression above just convert last a, an, of or whatever, but ignores any words before that.
Would you please let me know how I can manage this?