0.19.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseGenerates random strings and byte strings matching a regex.
use rand::{SeedableRng, Rng};
let mut rng = rand_xorshift::XorShiftRng::from_seed(*b"The initial seed");
// creates a generator for sampling strings
let grx = rand_regex::Regex::compile(r"\d{4}-\d{2}-\d{2}", 100).unwrap();
// sample a few strings randomly
let samples = (&mut rng).sample_iter(&grx).take(3).collect::<Vec<String>>();
// all Unicode characters are included when sampling
assert_eq!(samples, vec![
"꧰᪈৭᱃-𐒧᧒-௦۴".to_string(),
"𞓰۳꩑-᪄9-໔᮹".to_string(),
"𑛃𑃹९೭-١᥈-৫೪".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 grx = rand_regex::Regex::with_hir(hir, 100).unwrap();
let samples = (&mut rng).sample_iter(&grx).take(3).collect::<Vec<String>>();
assert_eq!(samples, vec![
"2839-82-12".to_string(),
"2857-86-63".to_string(),
"0381-04-99".to_string(),
]);rand_regex is heavily inspired by regex_generate and proptest.