8个稳定版本
1.3.0 | 2023年8月21日 |
---|---|
1.2.0 | 2023年4月22日 |
1.1.3 | 2023年2月7日 |
1.1.2 | 2022年8月7日 |
在 财务 类别中排名 #27
每月下载量 172 次
61KB
1.5K SLoC
currency_rs
currency_rs 是一个用于处理货币值的库。它受到了 currency.js 的启发,后者是为了解决javascript中的浮点数问题而构建的。
currency_rs 在幕后以整数的形式处理值,解决了许多最基本的精度问题。
2.51 + 0.01; // 2.5199999999999996
Currency::new_float(2.51, None).add(0.01).value(); // 2.52
2.52 - 0.01; // 2.5100000000000002
Currency::new_float(2.52, None).subtract(0.01).value(); // 2.51
这对于大多数 合理的 货币值都适用。只要你的货币值小于 253(以分计)或 90,071,992,547,409.91,你应该没问题。
安装
[dependencies]
currency_rs = "x.y.z"
使用方法
你可以从浮点数、字符串或货币对象本身创建货币对象作为值。
Currency::new_float(123., None).to_string(); // 123.00
Currency::new_float(1.23, None).to_string(); // 1.23
Currency::new_string("1.23", None).unwrap().to_string(); // 1.23
Currency::new_string("$12.30", None).unwrap().to_string(); // 12.30
let value = Currency::new_string("123.45", None).unwrap();
Currency::new_cur(value, None).to_string(); // 123.45
货币接受十进制值(例如 1.23
),默认精度为 2,但可以接受较小的货币单位(例如美元中的美分)。这将尊重解析时的精度选项。
let opt = CurrencyOpts::new().set_from_cents(true);
Currency::new_float(123., Some(opt.clone())).to_string(); // 1.23
Currency::new_string("123", Some(opt))
.unwrap()
.to_string(); // 1.23
let opt = CurrencyOpts::new()
.set_from_cents(true)
.set_precision(0);
Currency::new_float(123., Some(opt)).to_string(); // 123
let opt = CurrencyOpts::new()
.set_from_cents(true)
.set_precision(3);
Currency::new_float(123., Some(opt)).to_string(); // 1.23
它还提供各种算术方法,有助于解决浮点数问题。
Currency::new_float(123.5, None).add(0.23).value(); // 123.73
Currency::new_float(5.0, None).subtract(0.5).value(); // 4.50
Currency::new_float(45.25, None).multiply(3.).value(); // 135.75
Currency::new_float(1.12, None)
.distribute(5)
.iter()
.map(|x| x.value())
.collect::<Vec<f64>>(); // [0.23, 0.23, 0.22, 0.22, 0.22]
它还支持 Multiplication
、Subtraction
、Division
、Addition
和 Assignment
运算符
(Currency::new_float(123.5, None) + 0.23).value(); // 123.73
(Currency::new_float(5.0, None) - 0.5).value(); // 4.50
(Currency::new_float(45.25, None) * 3.).value(); // 135.75
Currency::new_float(1.12, None)
.distribute(5)
.iter()
.map(|x| x.value())
.collect::<Vec<f64>>(); // [0.23, 0.23, 0.22, 0.22, 0.22]
甚至有一个内置的格式化程序,可以自动将逗号分隔符放在正确的位置。
Currency::new_string("2,573,693.75", None)
.unwrap()
.add_string("100,275.50")
.unwrap()
.format(); // "$2,673,969.25"
Currency::new_string("1,237.72", None)
.unwrap()
.subtract(300.)
.format(); // "$937.72"
您还可以更改格式,将十进制和/或分隔符本地化到您的区域设置。
fn euro(value: &str) -> Currency {
let otp = CurrencyOpts::new()
.set_symbol("€")
.set_separator(".")
.set_decimal(",");
Currency::new_string(value, Some(otp)).unwrap()
}
euro("2.573.693,75")
.add_string("100.275,50")
.unwrap()
.format(); // "€2.673.969,25"
euro("1.237,72")
.subtract(300.)
.format(); // "€937,72"
选项
currency_rs 带有一组自己的默认选项,符合美元标准。您可以根据自己的区域设置进行自定义。
symbol
默认: $
在调用 currency.format()
时包含货币符号。
separator
默认: ,
在调用 currency.format()
时,分隔数字组的分隔符。
decimal
默认值: .
在调用 currency.format()
时使用的十进制。
precision
默认值: 2
存储为分的小数位数。
pattern
默认值: !#
允许您使用 !
作为货币符号的替换,使用 #
作为货币金额的替换来自定义格式模式。
negative_pattern
默认值: -!#
允许您使用 !
作为货币符号的替换,使用 #
作为货币金额的替换来自定义负格式模式。
error_on_invalid
默认值: false
如果向 Currency::new_string
传递无效值(例如 abc
),将抛出错误。
increment
默认值: null
当实现实现四舍五入的货币时,设置增量值将允许您设置最接近的增量以将显示值四舍五入。
let otp = CurrencyOpts::new()
.set_increment(0.05);
Currency::new_float(1.48, Some(otp)).format(); // "$1.50"
use_vedic
默认值: false
使用印度数字系统进行数字分组,例如 10,00,000.00
from_cents
默认值: false
将金额值解析为小货币单位(例如美元中的分)而不是美元。
国际化示例
let otp = CurrencyOpts::new()
.set_separator(" ")
.set_decimal(",")
.set_symbol("€");
Currency::new_float(1234.45, Some(otp)).format(); // "€1 234,45"
如果您需要处理多个货币值,最简单的方法是设置具有您所需货币设置的工厂函数。
fn usd(value: f64) -> Currency {
let otp = CurrencyOpts::new()
.set_symbol("$")
.set_precision(2);
Currency::new_float(value, Some(otp))
}
fn jpy(value: f64) -> Currency {
let otp = CurrencyOpts::new()
.set_symbol("¥")
.set_precision(0);
Currency::new_float(value, Some(otp))
}
fn gas(value: f64) -> Currency {
let otp = CurrencyOpts::new()
.set_precision(3);
Currency::new_float(value, Some(otp))
}
usd(1234.56).format(); // "$1,234.56"
jpy(1234.56).format(); // "¥1,235"
gas(1234.56).format(); // "$1,234.560"
许可证
依赖项
~3–4.5MB
~74K SLoC