2 个不稳定版本
0.2.1 | 2019年4月27日 |
---|---|
0.1.1 | 2019年4月24日 |
#236 在 财务
32 每月下载次数
11KB
153 行
Lotus
基本的货币和数字格式化库。
安装
- 将以下行添加到您的
Cargo.toml
[dependencies]
Lotus = "0.1.1"
- 在您的 crate 中使用它
extern crate Lotus;
use Lotus::*;
用法
以下是一些说明库功能的示例。请同时阅读文档。
extern crate Lotus;
use Lotus::*;
// Builder format (recommended)
let rupee = LotusBuilder::default()
.symbol("Rs.")
.precision(1)
.format_positive("{symbol} {value}")
.format_negative("{symbol} ({value})")
.format_zero("{symbol} 0.00")
.decimal_str(".")
.thousand_str(" ")
.build()
.unwrap();
assert_eq!("Rs. 2 000 000.0", rupee.format(2_000_000));
assert_eq!("Rs. (2 000.0)", rupee.format(-2000));
assert_eq!("Rs. 0.00", rupee.format(0));
// Using Lotus::new()
let dollar = Lotus::new("$", 3); // Lotus::new(symbol, precision)
assert_eq!("$ 50,000.035", dollar.format(50_000.035));
// Using lotus! macro
let f = lotus!(150, "$"); // lotus!(number, symbol)
assert_eq!("$ 150.00", f);
let g = lotus!(2_000_000); // lotus!(number)
assert_eq!("2,000,000.00", g);
其他编程语言
依赖项
~2.5MB
~56K SLoC