in-place substitution from by to in source.
const x = "_a_b_c_"; char[7] y = x; y.substituteASCIIInPlace!('_', ' '); assert(y[] == " a b c ");
See Implementation