Skip to content

Instantly share code, notes, and snippets.

@jcdarwin
Last active August 29, 2015 14:24
Show Gist options
  • Save jcdarwin/1ac49b63e45316f0a9b1 to your computer and use it in GitHub Desktop.
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
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