1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pub mod exports {
    pub use once_cell;
    pub use regex;
}

#[macro_export]
macro_rules! regex {
    ($re:expr $(,)?) => {{
        static RE: $crate::exports::once_cell::sync::OnceCell<$crate::exports::regex::Regex> =
            $crate::exports::once_cell::sync::OnceCell::new();
        RE.get_or_init(|| $crate::exports::regex::Regex::new($re).unwrap())
    }};
}

#[macro_export]
macro_rules! regex_multi_line {
    ($re:expr $(,)?) => {{
        static RE: $crate::exports::once_cell::sync::OnceCell<$crate::exports::regex::Regex> =
            $crate::exports::once_cell::sync::OnceCell::new();
        RE.get_or_init(|| {
            $crate::exports::regex::RegexBuilder::new($re)
                .multi_line(true)
                .build()
                .unwrap()
        })
    }};
}

#[cfg(test)]
mod tests {
    use regex::Regex;

    #[test]
    fn regex_macro_lit() {
        let _: &Regex = regex!(r"\w?");
    }

    #[test]
    fn regex_macro_expr() {
        let n = 5;
        let re: &Regex = regex!(&format!(r"\w{{{}}}", n));
        let s = "hotdogs";
        assert_eq!(re.find(s).map(|m| m.as_str()), Some(&s[0..n]));
    }

    #[test]
    fn regex_multi_line_macro_lit() {
        let _: &Regex = regex_multi_line!(r"\w?");
    }
}