Function collections::str::replaceDeprecated [-]  [+] [src]

pub fn replace(s: &str, from: &str, to: &str) -> String

Replaces all occurrences of one string with another.

Arguments

Return value

The original string with all occurrences of from replaced with to.

Examples

fn main() { #![allow(deprecated)] use std::str; let string = "orange"; let new_string = str::replace(string, "or", "str"); assert_eq!(new_string.as_slice(), "strange"); }
use std::str;
let string = "orange";
let new_string = str::replace(string, "or", "str");
assert_eq!(new_string.as_slice(), "strange");