https://github.com/younghakim7/fprice
financial_price_indication
https://github.com/younghakim7/fprice
Last synced: 4 months ago
JSON representation
financial_price_indication
- Host: GitHub
- URL: https://github.com/younghakim7/fprice
- Owner: YoungHaKim7
- Created: 2024-06-03T03:39:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-14T17:30:46.000Z (9 months ago)
- Last Synced: 2025-01-16T20:57:49.052Z (5 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```