Struct regex::Match

source ·
pub struct Match<'h> { /* private fields */ }
Expand description

Represents a single match of a regex in a haystack.

A Match contains both the start and end byte offsets of the match and the actual substring corresponding to the range of those byte offsets. It is guaranteed that start <= end. When start == end, the match is empty.

Since this Match can only be produced by the top-level Regex APIs that only support searching UTF-8 encoded strings, the byte offsets for a Match are guaranteed to fall on valid UTF-8 codepoint boundaries. That is, slicing a &str with Match::range is guaranteed to never panic.

Values with this type are created by Regex::find or Regex::find_iter. Other APIs can create Match values too. For example, Captures::get.

The lifetime parameter 'h refers to the lifetime of the matched of the haystack that this match was produced from.

Numbering

The byte offsets in a Match form a half-open interval. That is, the start of the range is inclusive and the end of the range is exclusive. For example, given a haystack abcFOOxyz and a match of FOO, its byte offset range starts at 3 and ends at 6. 3 corresponds to F and 6 corresponds to x, which is one past the end of the match. This corresponds to the same kind of slicing that Rust uses.

For more on why this was chosen over other schemes (aside from being consistent with how Rust the language works), see this discussion and Dijkstra’s note on a related topic.

Example

This example shows the value of each of the methods on Match for a particular search.

use regex::Regex;

let re = Regex::new(r"\p{Greek}+").unwrap();
let hay = "Greek: αβγδ";
let m = re.find(hay).unwrap();
assert_eq!(7, m.start());
assert_eq!(15, m.end());
assert!(!m.is_empty());
assert_eq!(8, m.len());
assert_eq!(7..15, m.range());
assert_eq!("αβγδ", m.as_str());

Implementations§

Returns the byte offset of the start of the match in the haystack. The start of the match corresponds to the position where the match begins and includes the first byte in the match.

It is guaranteed that Match::start() <= Match::end().

This is guaranteed to fall on a valid UTF-8 codepoint boundary. That is, it will never be an offset that appears between the UTF-8 code units of a UTF-8 encoded Unicode scalar value. Consequently, it is always safe to slice the corresponding haystack using this offset.

Returns the byte offset of the end of the match in the haystack. The end of the match corresponds to the byte immediately following the last byte in the match. This means that &slice[start..end] works as one would expect.

It is guaranteed that Match::start() <= Match::end().

This is guaranteed to fall on a valid UTF-8 codepoint boundary. That is, it will never be an offset that appears between the UTF-8 code units of a UTF-8 encoded Unicode scalar value. Consequently, it is always safe to slice the corresponding haystack using this offset.

Returns true if and only if this match has a length of zero.

Note that an empty match can only occur when the regex itself can match the empty string. Here are some examples of regexes that can all match the empty string: ^, ^$, \b, a?, a*, a{0}, (foo|\d+|quux)?.

Returns the length, in bytes, of this match.

Returns the range over the starting and ending byte offsets of the match in the haystack.

It is always correct to slice the original haystack searched with this range. That is, because the offsets are guaranteed to fall on valid UTF-8 boundaries, the range returned is always valid.

Returns the substring of the haystack that matched.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.