1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# fprice financial_price_indication # 3자리 숫자마다 콤마(,) 찍어주는 api - https://github.com/YoungHaKim7/fprice # Example ```rs let int = 123456778; let a = fprice::fmt_num_i64_str(int); println!("{}", a); ``` # Result ```bash 123,456,778 ```