View Single Post
Old 12-22-2021, 10:05 PM   #13
lomkiri
Groupie
lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.lomkiri ought to be getting tired of karma fortunes by now.
 
lomkiri's Avatar
 
Posts: 169
Karma: 1497966
Join Date: Jul 2021
Device: N/A
You didn't check "Case sensitive". It is mandatory, since you're looking for uppercase letters. Without checking this, then \p{Lu} (or [A-Z]) select any letter, not only uppercase.

Another mistake (mine, this time) : there was a mismatch in the history-box of the searches, and I put an old version of the string, it is not
Code:
((?:\p{Lu}\.)+)(?:(</(?:p|div|b/|blockquote)>)|( \p{Lu})|(' ')|(.))
but (as I put in my first msg):
Code:
((?:\p{Lu}\.){2,})(?:\s*(<(?:/p|/div|br/|/blockquote)>)|( \p{Lu})|(' ')|(.))
Both conditions gave this result. Terribly sorry for this !

Last edited by lomkiri; 12-23-2021 at 08:16 PM. Reason: including <br/> in the EoL tags
lomkiri is offline   Reply With Quote