Function std::str::replace[src]
pub fn replace(s: &str, from: &str, to: &str) -> String
Replace all occurrences of one string with another
Arguments
- s - The string containing substrings to replace
- from - The string to replace
- to - The replacement string
Return value
The original string with all occurrences of from replaced with to