Quote:
Originally Posted by jcambaya
Is there a regex that can convert text into Title case in sigil?
|
This simple regex will transform upper case words to title case words:
Find:
([[:upper:]])([[:upper:]]{2,})
Replace:
\1\L\2\E
For more examples, see this
old post.