String intToPriceString(int intPrice) { var nf = NumberFormat("#,##0", "ja_JP"); return nf.format(intPrice) + "円"; }