Whenever provided with a_new_phone_number of type &str I want to insert it somehow into a raw string for further input into Regex::new(). Is there a macro similar to format!() for that?
phone_number = Regex::new(r"(?xm)^.*{a_new_phone_number}.*$ ").unwrap();