Skip to content

Instantly share code, notes, and snippets.

@yubrew
Last active August 29, 2015 13:55
Show Gist options
  • Save yubrew/8737249 to your computer and use it in GitHub Desktop.
Save yubrew/8737249 to your computer and use it in GitHub Desktop.
name switcharoo with regex.
"Spacey, Kevin".replace(/(.*?),\s+(.*)/i, "$2 $1");
// #==> "Kevin Spacey"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment