Regular expressions: Difference between revisions

From Cor ad Cor
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
Kill the space by using this for the replacement field:
Kill the space by using this for the replacement field:
:<pre>$1$2</pre>
:<pre>$1$2</pre>
[~a-z0-9\s]

Revision as of 20:40, 23 January 2019

Find capital letter, period, space, capital letter, period.

([A-Z]\.)[ ]([A-Z]\.)

Kill the space by using this for the replacement field:

$1$2


[~a-z0-9\s]