Java Regex String Replace All replaceAllLiteral(@Nonnull String value, @Nonnull Pattern pattern, @Nonnull String replace)

Here you can find the source of replaceAllLiteral(@Nonnull String value, @Nonnull Pattern pattern, @Nonnull String replace)

Description

replace All Literal

License

Apache License

Declaration

@Nonnull
    private static String replaceAllLiteral(@Nonnull String value, @Nonnull Pattern pattern,
            @Nonnull String replace) 

Method Source Code

//package com.java2s;
/**//from   ww w. jav  a  2  s.co m
 * Copyright 2007 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import javax.annotation.Nonnull;

public class Main {
    @Nonnull
    private static String replaceAllLiteral(@Nonnull String value, @Nonnull Pattern pattern,
            @Nonnull String replace) {
        return pattern.matcher(value).replaceAll(Matcher.quoteReplacement(replace));
    }
}

Related

  1. replaceAll(String target, String from, String to)
  2. replaceAll(String text, Pattern pattern, String replace)
  3. replaceAll(StringBuilder sb, String regex, String replacement)
  4. replaceAllBackreference(String text, String regex, String replacement)
  5. replaceAllIgnoreCase(String source, String oldstring, String newstring)
  6. replaceAllPerLine(Pattern pattern, String value, String replacement)
  7. replaceAllStrictly(String src, String search, String replacement, boolean entirelyMatch, boolean caseSensitive)
  8. replaceAllTotal(String what, Pattern p, String replacement)
  9. replaceAllTotal(String what, String expr, String replacement)