Home | History | Annotate | Download | only in re2

Lines Matching refs:Replace

357   // Replace the first match of "pattern" in "str" with "rewrite".
364 // CHECK(RE2::Replace(&s, "b+", "d"));
370 static bool Replace(string *str,
374 // Like Replace(), except replaces successive non-overlapping occurrences
391 // Like Replace, except that if the pattern matches, "rewrite"
485 // A true return value guarantees that Replace() and Extract() won't
490 // Replace(). E.g. if rewrite == "foo \\2,\\1", returns 2.