Rust простой поиск и замените корпус

use regex::Regex;

fn word_replace(str: &str) -> String {
    let re = Regex::new(r"word").unwrap();
    re.replace_all(&str, "****").to_string()
}
// Find each instance of "word" in a string and replace with something else.
Mackerel