// 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"(?mi)^(\/\/|\*)*\s*(?i)(?=(@*to(-|\s|)+do))(?-i)(?!@todo\s(?!-|:)\S)").unwrap();
let string = "@todo Something
@todo Something
@todo This is something I should not forgot to do.
@to-do Something
@TODO Something
@ToDo Something
@TO-DO Something
@TO do Something
@to do Something
@todo: Something
@todo : Something
@todo- Something
@todo - Something
@todoSomething
todo something
todo Something
@to-do Something
todo Something
@todoSomething
@todo: This is something I should not forgot to do.
@todo - this is something I should not forgot to do.
@todo this is something I should not forgot to do.
@todo This is something I should not forgot to do.
TODO: This is something I should not forgot to do.
";
// 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/