Skip to content

Instantly share code, notes, and snippets.

@shameerc
Created March 21, 2011 05:49
Show Gist options
  • Select an option

  • Save shameerc/879089 to your computer and use it in GitHub Desktop.

Select an option

Save shameerc/879089 to your computer and use it in GitHub Desktop.
To replace number in a string with another number
function numberReplace(s,d) {
return s.replace (/\.?\d[\d.,]*/, d);
}
alert(numberReplace('25 $',12));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment