Macro const_str::replace [−][src]
macro_rules! replace {
($s : expr, $from : expr, $to : expr) => { ... };
}Expand description
Replaces all matches of a pattern with another string slice.
See str::replace.
Examples
assert_eq!("this is new", const_str::replace!("this is old", "old", "new"));