I'm aware that there is Edit > Change Case
menu. But there's no option for sentence case.
How do I achieve this? Is this possible for regex to achieve this?
You can use this regex:
find
(^|\.\s|…\s)([a-z])
and replace with
\1\u\2
Explanation: