Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created December 20, 2017 16:59
Show Gist options
  • Save MSerj/ac76025d376080e175cd1d71eb26bcbd to your computer and use it in GitHub Desktop.
Save MSerj/ac76025d376080e175cd1d71eb26bcbd to your computer and use it in GitHub Desktop.
JavaScript get number from string
var txt = "#div-name-1234-characteristic:561613213213";
var numb = txt.match(/\d/g);
numb = numb.join("");
alert (numb);
//result
1234561613213213
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment