Created
August 25, 2013 06:58
-
-
Save AlJohri/6332399 to your computer and use it in GitHub Desktop.
How do I split an NU email address into first name and last name?
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
use a case sensitive regular expression | |
find: (([A-Z]\w+)([A-Z]\w+)((\d+).)?201\[email protected]$) | |
replace: $2 $3 $5 $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment