// 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"(?m)^\d{2}\.\d{2}\b.*\K\R\*\*").unwrap();
let string = "07.00 Tom and Jerry
08.00 She is Just Like Others
**Series about young girl...**
09.00 Regional
09.30 Narava zdravi tržnica – Mic Mengeš, oddaja o zdravju
10.00 POP Hits
**Best music all over the world**
11.00 Alaska
12.00 Sport News
**All actual news from sports all over the world**
13.00 Morning news";
let substitution = "\\*\\*...";
// 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/