Returns an iterator for each successive non-overlapping match in `text`, returning the start and end byte indices with respect to `text`. # Example Find the start and end location of every word with exactly 13 ASCII word bytes: ```rust # extern crate regex; use regex::bytes::Regex; # fn main() { let text = b"Retroactively relinquishing remunerations is reprehensible."; for mat in Regex::new(r"\
(&'r self, text: &'t [u8])
| 185 | /// # } |
| 186 | /// ``` |
| 187 | pub fn find_iter<'r, 't>(&'r self, text: &'t [u8]) -> Matches<'r, 't> { |
| 188 | Matches(self.0.searcher().find_iter(text)) |
| 189 | } |
| 190 | |
| 191 | /// Returns the capture groups corresponding to the leftmost-first |
| 192 | /// match in `text`. Capture group `0` always corresponds to the entire |
no test coverage detected