I have found a couple posts around the internet and on here on how to remove all but the first letter of every word in a paragraph (or the whole text) using regex and Microsoft Word, but nothing has seemed to work in LibreOffice Writer.
I have been trying to use the Find and Replace dialog and have regular expressions checked in the options.
As an example:
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Would become:
L i d s a, c a e, s d e t i u l e d m a.
Keeping punctuation and case sensitivity would be great. I also am not opposed to using a different method/program for this.
\B[a-z]+or\B\w+would be 75 steps or 76 steps (not sure why the difference)