Answers for "rust simple search and replace regex"

0

rust simple search and replace regex

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.
Posted by: Guest on February-20-2021

Browse Popular Code Answers by Language