10个版本 (6个破坏性更新)
0.17.0 | 2024年1月15日 |
---|---|
0.16.0 | 2023年8月4日 |
0.15.1 | 2021年2月12日 |
0.14.2 | 2020年2月1日 |
0.12.0 | 2018年11月25日 |
#65 in 算法
40,832 每月下载量
用于 45 个crate (12个直接使用)
48KB
870 行
rand_regex
生成匹配正则表达式的随机字符串和字节字符串。
示例
use rand::{SeedableRng, Rng};
let mut rng = rand_xorshift::XorShiftRng::from_seed(*b"The initial seed");
// creates a generator for sampling strings
let gen = rand_regex::Regex::compile(r"\d{4}-\d{2}-\d{2}", 100).unwrap();
// sample a few strings randomly
let samples = (&mut rng).sample_iter(&gen).take(3).collect::<Vec<String>>();
// all Unicode characters are included when sampling
assert_eq!(samples, vec![
"꘥᥉১᪕-꧷៩-୦۱".to_string(),
"𞋴۰𑋸꣕-᥆꧰-෮᪑".to_string(),
"𑋲𐒥४౫-9႙-९౨".to_string()
]);
// you could use `regex_syntax::Hir` to include more options
let mut parser = regex_syntax::ParserBuilder::new().unicode(false).build();
let hir = parser.parse(r"\d{4}-\d{2}-\d{2}").unwrap();
let gen = rand_regex::Regex::with_hir(hir, 100).unwrap();
let samples = (&mut rng).sample_iter(&gen).take(3).collect::<Vec<String>>();
assert_eq!(samples, vec![
"8922-87-63".to_string(),
"3149-18-88".to_string(),
"5420-58-55".to_string(),
]);
致谢
rand_regex
受 regex_generate
和 proptest
的极大启发。
依赖关系
~1–1.4MB
~38K SLoC