Created
July 1, 2014 16:37
-
-
Save mujahidk/5ffdf5c53541622235b2 to your computer and use it in GitHub Desktop.
Select empty space between a number and letter
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
//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