Macro const_str::replace

source ·
macro_rules! replace {
    ($s: expr, $from: expr, $to: expr) => { ... };
}
Expand description

Replaces all matches of a pattern with another string slice.

See str::replace.

The pattern type must be one of

§Examples

assert_eq!("this is new", const_str::replace!("this is old", "old", "new"));