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}} |