Lines Matching refs:replaceAll
25 $(LREF replaceAll)
254 $(LREF replaceFirst) and $(LREF replaceAll).
1221 To replace all matches use $(LREF replaceAll).
1253 see $(LREF replaceAll) to replace the all of the matches.
1351 public @trusted R replaceAll(R, C, RegEx)(R input, RegEx re, const(C)[] format)
1362 assert(replaceAll("12000 + 42100 = 54100", re, ",") == "12,000 + 42,100 = 54,100");
1385 public @trusted R replaceAll(alias fun, R, RegEx)(R input, RegEx re)
1400 auto s = replaceAll!(baz)("Strap a rocket engine on a chicken.",
1406 A variation on $(LREF replaceAll) that instead of allocating a new string
1410 As with $(LREF replaceAll) there are 2 overloads - one with a format string,
1466 assert(replaceAll(s1, re1, "court") == t1A);
1467 assert(replaceAll(s2, re2, "ho") == t2A);
1472 auto rep1A = replaceAll!(cap => cap[0][0]~"o".to!S()~cap[0][1..$])(s1, re1);
1474 assert(replaceAll!(cap => "ho".to!S())(s2, re2) == t2A);
1490 With "g" flag it performs the equivalent of $(LREF replaceAll) otherwise it
1493 The use of this function is $(RED discouraged), please use $(LREF replaceAll)