cargo add fmt_comma
``` use fmt_comma::format;
fn main() { let pcprice: f32 = 9800000.0; let companyasendcost: f32 = 1200.0; let companyapcprice = pcprice * 0.8 + companyasendcost; let companybpcprice = pcprice * 0.9; println!("Company A:{}yen", format(companyapcprice as isize)); // → 7,841,200yen println!("Company B:{}yen", format(companybpc_price as isize)); // → 8,820,000yen } ```
``` use fmtcomma::formatdecimal;
fn main() { println!("Company C:{}yen", formatdecimal(10003.333)); // → 10,003.333yen println!("Company D:{}yen", formatdecimal(3380.2)); // → 3,380.2yen println!("Company E:{}yen", format_decimal(3380.0)); // → 3,380yen } ```
``` use fmtcomma::rmcomma;
fn main() { println!("Company F:{}yen", rm_comma("10,003")); // → 10003yen } ```
``` use fmtcomma::rmcomma_decimal;
fn main() { println!("Company G:{}yen", rmcommadecimal("10,003.333")); // → 10003.333yen } ```