Last active
August 29, 2015 14:24
-
-
Save jcdarwin/1ac49b63e45316f0a9b1 to your computer and use it in GitHub Desktop.
Find and replace in Microsoft Word, using wildcards (Word's form of regular expressions), to join lines with a lowercase character either side of the line break
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Find and replace in Microsoft Word, using wildcards (Word's form of regular expressions), to find something like: | |
going | |
home | |
to | |
going home | |
In the Find box: | |
([a-z])^13([a-z]) | |
In the Replace box: | |
\1 \2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment