Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active July 4, 2017 18:55
Show Gist options
  • Save zmts/cd2b0da919db3ae5dcd6d90141b0be4a to your computer and use it in GitHub Desktop.
Save zmts/cd2b0da919db3ae5dcd6d90141b0be4a to your computer and use it in GitHub Desktop.
regexp, regular expression, leave only numbers and point (Numbers decimal)
' so me_shit_&$^%*5-_5.55'.replace(/[^0-9.]/g, '')
// >> 55.55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment