RegExpT.replaceAll

Returns a copy of the input with all matches replaced by replacement.

  1. char_t[] replaceAll(const(char_t)[] input, const(char_t)[] replacement, char_t[] output_buffer)
    class RegExpT(char_t)
    char_t[]
    replaceAll
    (
    const(char_t)[] input
    ,
    const(char_t)[] replacement
    ,
    char_t[] output_buffer = null
    )
  2. char_t[] replaceAll(const(char_t)[] input, char_t[] delegate(RegExpT!(char_t)) dg, char_t[] output_buffer)

Meta