// 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)(?<=>[^<]*)(flyer)|(flyer)(?=[^>]*<)").unwrap();
let string = "flyertalk.com <a href=\"HTTPS://flyertalk.com\">Flyer Talk website</a>
Forum <a href=\"HTTPS://www.flyertalk.com/forum/delta-air-lines-skymiles-665/\">Delta</a>
----- <a href=\"HTTPS://www.flyertalk.com/forum/american-airlines-aadvantage-733/\">AAA</a>
<u>Pneu</u> FLYER
- FLYER 40-622 <a href=\"HTTPS://www.veloplus.ch/AlleProdukte/Reifen/CityTourAlltag.aspx\">TUB</a> FLYER";
let substitution = "<u>$1$2</u>";
// result will be a String with the substituted value
let result = regex.replace_all(string, substitution);
println!("{}", result);
}
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/