Hello @floyddebarber, @peterjones and All,
An alternative solution would be :
SEARCH (?-i)(?<=\.)\h*(?=\u\u)
REPLACE \r\n
So, for instance, from this INPUT text :
MÜLLER 6 - Blahblah. SMITH 5 - Asdds. Asdsd.DI CARLO 8,5 - And. Maybe even. Multiple. Sentences here.
you would get the OUTPUT text :
MÜLLER 6 - Blahblah.
SMITH 5 - Asdds. Asdsd.
DI CARLO 8,5 - And. Maybe even. Multiple. Sentences here.
Notes :
This regex searches a range of horizontal blank chars ( \x20, \x09 or \x85 ), possibly null, but ONLY IF :
It is preceded with a literal full period due to the positive look-behind (?<=\.)
It is followed with two upper-case letters, accentuated or not, due to the positive look-around (?=\u\u)
And, in replacement, this range is just replaced by a Windows line-break ( \r\n ) ( Use \n only if working on Unix files )
Best Regards,
guy038