Skip to content

Instantly share code, notes, and snippets.

@cgkio
Created December 11, 2013 21:56
Show Gist options
  • Save cgkio/7919200 to your computer and use it in GitHub Desktop.
Save cgkio/7919200 to your computer and use it in GitHub Desktop.
match/return first word with REGEX
REGEX: match/return first word (before space)
var string = '130,000 037037032032';
var regex = /^\S*/g;
var result = string.match(regex);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment