Keyboard Shortcut in Regex?
I'm still trying to figure out a way to convert text to Title Case without having to manually select the text each time....short of writing a plugin to include formulaic regex like Calibre uses.
I have TitleCase assigned as a keyboard shortcut (Ctrl+Space) and wondered if there was a way to use that shortcut in the 'replace' section of the regex...resulting in something like:
find: (?<=\<h2\>)(.*?)(?=\</h2\>)
replace: Ctrl+Space
|