Condition is: 's' is removed at the end of every word if it is not in the middle of the sentence.
The input string is:
Ses Holmes os. Sos
The output should be:
Se Holmes o. So
I started with this condition
([A-Z][a-z]+)
but got stuck on it. It cannot be inserted into negative lookbehind.