Skip to content

Instantly share code, notes, and snippets.

@kkawamura
Created June 5, 2013 10:51
Show Gist options
  • Save kkawamura/5713081 to your computer and use it in GitHub Desktop.
Save kkawamura/5713081 to your computer and use it in GitHub Desktop.
var str = "19,000円";
now = str.match(/^([0-9,]*)円$/)[1];
now = now.replace(/\,/,"");
now = parseInt(now);
price = 10;
alert(now+price);
alert(now);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment