javascript 文字列型の金額に「,」を入れる 2012年8月12日 2020年5月29日 完全版を表示する function number_format(price) { for(i = 0; i < price.length/3; i++){ var price = price.replace(/^([+-]?d+)(ddd)/,"$1,$2"); } return price; } 実行例 number_format(1000) リターン結果 1,000 B!