Difference between revisions of "Erasesentencefromend"

From Theonomy Wiki
Line 3: Line 3:
 
[^\.\;\?\!]+ # Everything up to the sentence delimiter
 
[^\.\;\?\!]+ # Everything up to the sentence delimiter
 
[\.\;\?\!]* # Any number of sentence delimiters
 
[\.\;\?\!]* # Any number of sentence delimiters
[^\.\;\?\!]*? # Anything after the sentence at the end (like HTML markup)
+
([^\.\;\?\!]*?) # Anything after the sentence at the end (like HTML markup)
 
$ # anchors at the end of the input
 
$ # anchors at the end of the input
 
/sx|$1$2}}
 
/sx|$1$2}}

Revision as of 16:34, 22 July 2020