Answered
GREP to convert first letter of all paragraphs from lowercase to uppercase?
Please don't ask how I inherited this text, but I have a book where every paragraph starts with a lowercase letter.
I was able to convert all of the lowercase letters to uppercase by running ^a to A, then ^b to B, ^c to C, etc. It only took 26 times.
But would there have been a more succinct way to do it in one fell swoop?


