11 releases (7 breaking)

0.18.0 Jan 28, 2025
0.17.0 Jan 15, 2024
0.16.0 Aug 4, 2023
0.15.1 Feb 12, 2021
0.12.0 Nov 25, 2018

#47 in Algorithms

Download history 10642/week @ 2024-10-25 9792/week @ 2024-11-01 12100/week @ 2024-11-08 12707/week @ 2024-11-15 13412/week @ 2024-11-22 17252/week @ 2024-11-29 16251/week @ 2024-12-06 13217/week @ 2024-12-13 6925/week @ 2024-12-20 4946/week @ 2024-12-27 12451/week @ 2025-01-03 13108/week @ 2025-01-10 12788/week @ 2025-01-17 12760/week @ 2025-01-24 13289/week @ 2025-01-31 14359/week @ 2025-02-07

55,776 downloads per month
Used in 51 crates (13 directly)

MIT license

48KB
870 lines

rand_regex

Crates.io Build status MIT License

Generates random strings and byte strings matching a regex.

Examples

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(),
    "𞓰۳𑛐꩑-᪄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 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![
    "2839-82-12".to_string(),
    "2857-86-63".to_string(),
    "0381-04-99".to_string(),
]);

Acknowledgement

rand_regex is heavily inspired by regex_generate and proptest.

Dependencies

~2.5MB
~52K SLoC