Skip to content

Instantly share code, notes, and snippets.

@Manbearpixel
Created August 16, 2016 22:04
Show Gist options
  • Save Manbearpixel/ea18b6defff94db689c8dbc9f388f53e to your computer and use it in GitHub Desktop.
Save Manbearpixel/ea18b6defff94db689c8dbc9f388f53e to your computer and use it in GitHub Desktop.
All digits including commas and periods
/[\d,\.]+/
All digits in format 123 | 123,456 | 123,456.789 | 123,456,789.12
/((\d{1,3}(,?\d{3})+)|(\d+))(\.\d+)?+/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment