Struct fancy_regex::Captures [−][src]
pub struct Captures<'t> { /* fields omitted */ }
Expand description
A set of capture groups found for a regex.
Implementations
Get the capture group by its index in the regex.
If there is no match for that group or the index does not correspond to a group, None
is
returned. The index 0 returns the whole match.
Returns the match for a named capture group. Returns None
the capture
group did not match or if there is no group with the given name.
Expands all instances of $group
in replacement
to the corresponding
capture group name
, and writes them to the dst
buffer given.
group
may be an integer corresponding to the index of the
capture group (counted by order of opening parenthesis where \0
is the
entire match) or it can be a name (consisting of letters, digits or
underscores) corresponding to a named capture group.
If group
isn’t a valid capture group (whether the name doesn’t exist
or isn’t a valid index), then it is replaced with the empty string.
The longest possible name is used. e.g., $1a
looks up the capture
group named 1a
and not the capture group at index 1
. To exert more
precise control over the name, use braces, e.g., ${1}a
.
To write a literal $
, use $$
.
For more control over expansion, see Expander
.
pub fn iter<'c>(&'c self) -> SubCaptureMatches<'c, 't>ⓘNotable traits for SubCaptureMatches<'c, 't>impl<'c, 't> Iterator for SubCaptureMatches<'c, 't> type Item = Option<Match<'t>>;
pub fn iter<'c>(&'c self) -> SubCaptureMatches<'c, 't>ⓘNotable traits for SubCaptureMatches<'c, 't>impl<'c, 't> Iterator for SubCaptureMatches<'c, 't> type Item = Option<Match<'t>>;
impl<'c, 't> Iterator for SubCaptureMatches<'c, 't> type Item = Option<Match<'t>>;
Iterate over the captured groups in order in which they appeared in the regex. The first capture corresponds to the whole match.
Trait Implementations
Copied from regex::Captures
…
Get a group by name.
't
is the lifetime of the matched text and 'i
is the lifetime
of the group name (the index).
The text can’t outlive the Captures
object if this method is
used, because of how Index
is defined (normally a[i]
is part
of a
and can’t outlive it); to do that, use name
instead.
Panics
If there is no group named by the given value.
Copied from regex::Captures
…
Get a group by index.
't
is the lifetime of the matched text.
The text can’t outlive the Captures
object if this method is
used, because of how Index
is defined (normally a[i]
is part
of a
and can’t outlive it); to do that, use get()
instead.
Panics
If there is no group at the given index.