Skip to content

Instantly share code, notes, and snippets.

@mujahidk
Created July 1, 2014 16:37
Show Gist options
  • Save mujahidk/5ffdf5c53541622235b2 to your computer and use it in GitHub Desktop.
Save mujahidk/5ffdf5c53541622235b2 to your computer and use it in GitHub Desktop.
Select empty space between a number and letter
//Select empty space between a number and letter
(?<=\d)\s+(?=\w)
//Or, the above will match the line endings too
(?<=\d)[ ]+(?=\w)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment