#string #digit #decimal-digits #first #detect

is-digit

检测字符或字符串和String的第一个字符中的十进制数字

1 个不稳定版本

0.1.2 2024年3月19日
0.1.1 2024年3月19日
0.1.0 2024年3月19日

#3 in #digit

MIT 许可证

4KB

is-digit

检测字符或字符串和String的第一个字符中的十进制数字。

安装

在 Cargo.toml 中指定依赖项

[dependencies]
is-digit = "~0.1.1"

使用 cargo 构建is-digit

$ cargo build

用法

extern crate is_digit;
use is_digit::IsDigit;

let _i = '1';
println!("{}", _i.is_dec_digit()); // prints true
let _j = "2";
println!("{}", _j.is_dec_digit()); // prints true
let _k = String::from("3");
println!("{}", _k.is_dec_digit()); // prints true

关于

许可证

版权 © 2024, 255doesnotexist. 在 MIT 许可证下发布。

无运行时依赖