pub struct LazyRegexBuilder { /* private fields */ }
Expand description
A configurable builder for a lazy Regex
.
Implementations§
Source§impl LazyRegexBuilder
impl LazyRegexBuilder
Sourcepub fn new(source: &str) -> LazyRegexBuilder
pub fn new(source: &str) -> LazyRegexBuilder
Create a new regular expression builder with the given pattern.
If the pattern is invalid, then an error will be returned when
compile
is called.
Sourcepub fn build(&self) -> Result<LazyRegex, Error>
pub fn build(&self) -> Result<LazyRegex, Error>
Consume the builder and compile the regular expression.
Note that calling as_str
on the resulting Regex
will produce the
pattern given to new
verbatim. Notably, it will not incorporate any
of the flags set on this builder.
Sourcepub fn case_insensitive(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn case_insensitive(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the case insensitive (i
) flag.
Sourcepub fn multi_line(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn multi_line(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the multi-line matching (m
) flag.
Sourcepub fn dot_matches_new_line(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn dot_matches_new_line(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the any character (s
) flag, where in .
matches
anything when s
is set and matches anything except for new line when
it is not set (the default).
N.B. “matches anything” means “any byte” for regex::bytes::Regex
expressions and means “any Unicode scalar value” for regex::Regex
expressions.
Sourcepub fn swap_greed(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn swap_greed(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the greedy swap (U
) flag.
Sourcepub fn ignore_whitespace(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn ignore_whitespace(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the ignore whitespace (x
) flag.
Sourcepub fn unicode(&mut self, yes: bool) -> &mut LazyRegexBuilder
pub fn unicode(&mut self, yes: bool) -> &mut LazyRegexBuilder
Set the value for the Unicode (u
) flag.
Sourcepub fn size_limit(&mut self, limit: usize) -> &mut LazyRegexBuilder
pub fn size_limit(&mut self, limit: usize) -> &mut LazyRegexBuilder
Set the approximate size limit of the compiled regular expression.
This roughly corresponds to the number of bytes occupied by a single compiled program. If the program exceeds this number, then a compilation error is returned.
Sourcepub fn dfa_size_limit(&mut self, limit: usize) -> &mut LazyRegexBuilder
pub fn dfa_size_limit(&mut self, limit: usize) -> &mut LazyRegexBuilder
Set the approximate size of the cache used by the DFA.
This roughly corresponds to the number of bytes that the DFA will use while searching.
Note that this is a per thread limit. There is no way to set a global limit. In particular, if a regex is used from multiple threads simulanteously, then each thread may use up to the number of bytes specified here.
Trait Implementations§
Source§impl Clone for LazyRegexBuilder
impl Clone for LazyRegexBuilder
Source§fn clone(&self) -> LazyRegexBuilder
fn clone(&self) -> LazyRegexBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more