replace.replace

Undocumented in source.
  1. enum replace;
  2. enum replace;
  3. enum replace;
    template replace(string str, dchar from, dchar to)
    static if(!(str.length == 0))
    static if(!(str[0] == from))
    enum replace = str[0] ~ replace!(str[1..$], from, to);

Meta