// include the latest version of the regex crate in your Cargo.toml
extern crate regex;
use regex::Regex;
fn main() {
let regex = Regex::new(r"(?i)(?<=(\s))([0-9]{1,2})\b(?!\s*(:|am|pm|from|to|minutes|minute|min|mins))").unwrap();
let string = "turn the heating on from 5 mins to 1 am until 10 mins to 2pm
turn the heating on from 1 until 2
turn the heating on from 5 to 1 until 10 to 2
turn the heating on from 5 mins to 1 until 10 mins to 2
turn the heating on from 5 mins to 1 in the the morning
turn the heating on from 5 mins to 1:00 until 10 mins to 2:00
turn the heating on from 5 mins to 1:00 until 10 mins to 2
turn the heating on until 3
";
// result will be an iterator over tuples containing the start and end indices for each match in the string
let result = regex.captures_iter(string);
for mat in result {
println!("{:?}", mat);
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Rust, please visit: https://docs.rs/regex/latest/regex/