An open API service indexing awesome lists of open source software.

https://github.com/younghakim7/fprice

financial_price_indication
https://github.com/younghakim7/fprice

Last synced: 4 months ago
JSON representation

financial_price_indication

Awesome Lists containing this project

README

        

# 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
```