Skip to content

Instantly share code, notes, and snippets.

@bhrott
Created September 18, 2015 19:23
Show Gist options
  • Save bhrott/fe4c8862f4f41f861034 to your computer and use it in GitHub Desktop.
Save bhrott/fe4c8862f4f41f861034 to your computer and use it in GitHub Desktop.
Function to remove non number characters form a text.
function removeNotNumbers(text) {
if(text) {
text.replace(/[^0-9]/g, '');
}
return text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment