rust 中一些常用工具

linter Status tests Status doc.rs crates.io

安装

toml [dependencies] yansongda-utils = { version = "~1.0.0", features = ["phone"] }

文档

点击传送

使用

Phone 模块

```rust use yansongda_utils::phone;

// 是否是手机号码 assert!(phone::ismobile("13800138000")); // 是否是固定电话 assert!(phone::istelephone("01012345678")); // 是否是服务号码 assert!(phone::isservice("12345678")); // 是否是长途 assert!(phone::isidd("0012345678")); ```