2 releases
0.1.1 | Jun 3, 2024 |
---|---|
0.1.0 | Jun 3, 2024 |
#227 in Value formatting
7KB
108 lines
fprice
financial_price_indication
3자리 숫자마다 콤마(,) 찍어주는 api
Example
let int = 123456778;
let a = fprice::fmt_num_i64_str(int);
println!("{}", a);
Result
123,456,778
lib.rs
:
3자리 숫자마다 콤마(,) 찍어주는 api
Example
let int = 123456778;
let a = fprice::fmt_num_i64_str(int);
println!("{}", a);
Result
123,456,778