RegExUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

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

  20. /**
  21.  * Helpers to process Strings using regular expressions.
  22.  * @see java.util.regex.Pattern
  23.  * @since 3.8
  24.  */
  25. public class RegExUtils {

  26.     /**
  27.      * Compiles the given regular expression into a pattern with the {@link Pattern#DOTALL} flag.
  28.      *
  29.      * @param regex The expression to be compiled
  30.      * @return the given regular expression compiled into a pattern with the {@link Pattern#DOTALL} flag.
  31.      * @since 3.13.0
  32.      */
  33.     public static Pattern dotAll(final String regex) {
  34.         return Pattern.compile(regex, Pattern.DOTALL);
  35.     }

  36.     /**
  37.      * Compiles the given regular expression into a pattern with the {@link Pattern#DOTALL} flag, then creates a matcher that will match the given text against
  38.      * this pattern.
  39.      *
  40.      * @param regex The expression to be compiled.
  41.      * @param text  The character sequence to be matched.
  42.      * @return A new matcher for this pattern.
  43.      * @since 3.13.0
  44.      */
  45.     public static Matcher dotAllMatcher(final String regex, final String text) {
  46.         return dotAll(regex).matcher(text);
  47.     }

  48.     /**
  49.      * Removes each substring of the text String that matches the given regular expression pattern.
  50.      *
  51.      * This method is a {@code null} safe equivalent to:
  52.      * <ul>
  53.      *  <li>{@code pattern.matcher(text).replaceAll(StringUtils.EMPTY)}</li>
  54.      * </ul>
  55.      *
  56.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  57.      *
  58.      * <pre>{@code
  59.      * StringUtils.removeAll(null, *)      = null
  60.      * StringUtils.removeAll("any", (Pattern) null)  = "any"
  61.      * StringUtils.removeAll("any", Pattern.compile(""))    = "any"
  62.      * StringUtils.removeAll("any", Pattern.compile(".*"))  = ""
  63.      * StringUtils.removeAll("any", Pattern.compile(".+"))  = ""
  64.      * StringUtils.removeAll("abc", Pattern.compile(".?"))  = ""
  65.      * StringUtils.removeAll("A<__>\n<__>B", Pattern.compile("<.*>"))      = "A\nB"
  66.      * StringUtils.removeAll("A<__>\n<__>B", Pattern.compile("(?s)<.*>"))  = "AB"
  67.      * StringUtils.removeAll("A<__>\n<__>B", Pattern.compile("<.*>", Pattern.DOTALL))  = "AB"
  68.      * StringUtils.removeAll("ABCabc123abc", Pattern.compile("[a-z]"))     = "ABC123"
  69.      * }</pre>
  70.      *
  71.      * @param text  text to remove from, may be null
  72.      * @param regex  the regular expression to which this string is to be matched
  73.      * @return  the text with any removes processed,
  74.      *              {@code null} if null String input
  75.      *
  76.      * @see #replaceAll(String, Pattern, String)
  77.      * @see java.util.regex.Matcher#replaceAll(String)
  78.      * @see java.util.regex.Pattern
  79.      */
  80.     public static String removeAll(final String text, final Pattern regex) {
  81.         return replaceAll(text, regex, StringUtils.EMPTY);
  82.     }

  83.     /**
  84.      * Removes each substring of the text String that matches the given regular expression.
  85.      *
  86.      * This method is a {@code null} safe equivalent to:
  87.      * <ul>
  88.      *  <li>{@code text.replaceAll(regex, StringUtils.EMPTY)}</li>
  89.      *  <li>{@code Pattern.compile(regex).matcher(text).replaceAll(StringUtils.EMPTY)}</li>
  90.      * </ul>
  91.      *
  92.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  93.      *
  94.      * <p>Unlike in the {@link #removePattern(String, String)} method, the {@link Pattern#DOTALL} option
  95.      * is NOT automatically added.
  96.      * To use the DOTALL option prepend {@code "(?s)"} to the regex.
  97.      * DOTALL is also known as single-line mode in Perl.</p>
  98.      *
  99.      * <pre>{@code
  100.      * StringUtils.removeAll(null, *)      = null
  101.      * StringUtils.removeAll("any", (String) null)  = "any"
  102.      * StringUtils.removeAll("any", "")    = "any"
  103.      * StringUtils.removeAll("any", ".*")  = ""
  104.      * StringUtils.removeAll("any", ".+")  = ""
  105.      * StringUtils.removeAll("abc", ".?")  = ""
  106.      * StringUtils.removeAll("A<__>\n<__>B", "<.*>")      = "A\nB"
  107.      * StringUtils.removeAll("A<__>\n<__>B", "(?s)<.*>")  = "AB"
  108.      * StringUtils.removeAll("ABCabc123abc", "[a-z]")     = "ABC123"
  109.      * }</pre>
  110.      *
  111.      * @param text  text to remove from, may be null
  112.      * @param regex  the regular expression to which this string is to be matched
  113.      * @return  the text with any removes processed,
  114.      *              {@code null} if null String input
  115.      *
  116.      * @throws  java.util.regex.PatternSyntaxException
  117.      *              if the regular expression's syntax is invalid
  118.      *
  119.      * @see #replaceAll(String, String, String)
  120.      * @see #removePattern(String, String)
  121.      * @see String#replaceAll(String, String)
  122.      * @see java.util.regex.Pattern
  123.      * @see java.util.regex.Pattern#DOTALL
  124.      */
  125.     public static String removeAll(final String text, final String regex) {
  126.         return replaceAll(text, regex, StringUtils.EMPTY);
  127.     }

  128.     /**
  129.      * Removes the first substring of the text string that matches the given regular expression pattern.
  130.      *
  131.      * This method is a {@code null} safe equivalent to:
  132.      * <ul>
  133.      *  <li>{@code pattern.matcher(text).replaceFirst(StringUtils.EMPTY)}</li>
  134.      * </ul>
  135.      *
  136.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  137.      *
  138.      * <pre>{@code
  139.      * StringUtils.removeFirst(null, *)      = null
  140.      * StringUtils.removeFirst("any", (Pattern) null)  = "any"
  141.      * StringUtils.removeFirst("any", Pattern.compile(""))    = "any"
  142.      * StringUtils.removeFirst("any", Pattern.compile(".*"))  = ""
  143.      * StringUtils.removeFirst("any", Pattern.compile(".+"))  = ""
  144.      * StringUtils.removeFirst("abc", Pattern.compile(".?"))  = "bc"
  145.      * StringUtils.removeFirst("A<__>\n<__>B", Pattern.compile("<.*>"))      = "A\n<__>B"
  146.      * StringUtils.removeFirst("A<__>\n<__>B", Pattern.compile("(?s)<.*>"))  = "AB"
  147.      * StringUtils.removeFirst("ABCabc123", Pattern.compile("[a-z]"))          = "ABCbc123"
  148.      * StringUtils.removeFirst("ABCabc123abc", Pattern.compile("[a-z]+"))      = "ABC123abc"
  149.      * }</pre>
  150.      *
  151.      * @param text  text to remove from, may be null
  152.      * @param regex  the regular expression pattern to which this string is to be matched
  153.      * @return  the text with the first replacement processed,
  154.      *              {@code null} if null String input
  155.      *
  156.      * @see #replaceFirst(String, Pattern, String)
  157.      * @see java.util.regex.Matcher#replaceFirst(String)
  158.      * @see java.util.regex.Pattern
  159.      */
  160.     public static String removeFirst(final String text, final Pattern regex) {
  161.         return replaceFirst(text, regex, StringUtils.EMPTY);
  162.     }

  163.     /**
  164.      * Removes the first substring of the text string that matches the given regular expression.
  165.      *
  166.      * This method is a {@code null} safe equivalent to:
  167.      * <ul>
  168.      *  <li>{@code text.replaceFirst(regex, StringUtils.EMPTY)}</li>
  169.      *  <li>{@code Pattern.compile(regex).matcher(text).replaceFirst(StringUtils.EMPTY)}</li>
  170.      * </ul>
  171.      *
  172.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  173.      *
  174.      * <p>The {@link Pattern#DOTALL} option is NOT automatically added.
  175.      * To use the DOTALL option prepend {@code "(?s)"} to the regex.
  176.      * DOTALL is also known as single-line mode in Perl.</p>
  177.      *
  178.      * <pre>{@code
  179.      * StringUtils.removeFirst(null, *)      = null
  180.      * StringUtils.removeFirst("any", (String) null)  = "any"
  181.      * StringUtils.removeFirst("any", "")    = "any"
  182.      * StringUtils.removeFirst("any", ".*")  = ""
  183.      * StringUtils.removeFirst("any", ".+")  = ""
  184.      * StringUtils.removeFirst("abc", ".?")  = "bc"
  185.      * StringUtils.removeFirst("A<__>\n<__>B", "<.*>")      = "A\n<__>B"
  186.      * StringUtils.removeFirst("A<__>\n<__>B", "(?s)<.*>")  = "AB"
  187.      * StringUtils.removeFirst("ABCabc123", "[a-z]")          = "ABCbc123"
  188.      * StringUtils.removeFirst("ABCabc123abc", "[a-z]+")      = "ABC123abc"
  189.      * }</pre>
  190.      *
  191.      * @param text  text to remove from, may be null
  192.      * @param regex  the regular expression to which this string is to be matched
  193.      * @return  the text with the first replacement processed,
  194.      *              {@code null} if null String input
  195.      *
  196.      * @throws  java.util.regex.PatternSyntaxException
  197.      *              if the regular expression's syntax is invalid
  198.      *
  199.      * @see #replaceFirst(String, String, String)
  200.      * @see String#replaceFirst(String, String)
  201.      * @see java.util.regex.Pattern
  202.      * @see java.util.regex.Pattern#DOTALL
  203.      */
  204.     public static String removeFirst(final String text, final String regex) {
  205.         return replaceFirst(text, regex, StringUtils.EMPTY);
  206.     }

  207.     /**
  208.      * Removes each substring of the source String that matches the given regular expression using the DOTALL option.
  209.      *
  210.      * This call is a {@code null} safe equivalent to:
  211.      * <ul>
  212.      * <li>{@code text.replaceAll(&quot;(?s)&quot; + regex, StringUtils.EMPTY)}</li>
  213.      * <li>{@code Pattern.compile(regex, Pattern.DOTALL).matcher(text).replaceAll(StringUtils.EMPTY)}</li>
  214.      * </ul>
  215.      *
  216.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  217.      *
  218.      * <pre>{@code
  219.      * StringUtils.removePattern(null, *)       = null
  220.      * StringUtils.removePattern("any", (String) null)   = "any"
  221.      * StringUtils.removePattern("A<__>\n<__>B", "<.*>")  = "AB"
  222.      * StringUtils.removePattern("ABCabc123", "[a-z]")    = "ABC123"
  223.      * }</pre>
  224.      *
  225.      * @param text
  226.      *            the source string
  227.      * @param regex
  228.      *            the regular expression to which this string is to be matched
  229.      * @return The resulting {@link String}
  230.      * @see #replacePattern(String, String, String)
  231.      * @see String#replaceAll(String, String)
  232.      * @see Pattern#DOTALL
  233.      */
  234.     public static String removePattern(final String text, final String regex) {
  235.         return replacePattern(text, regex, StringUtils.EMPTY);
  236.     }

  237.     /**
  238.      * Replaces each substring of the text String that matches the given regular expression pattern with the given replacement.
  239.      *
  240.      * This method is a {@code null} safe equivalent to:
  241.      * <ul>
  242.      *  <li>{@code pattern.matcher(text).replaceAll(replacement)}</li>
  243.      * </ul>
  244.      *
  245.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  246.      *
  247.      * <pre>{@code
  248.      * StringUtils.replaceAll(null, *, *)       = null
  249.      * StringUtils.replaceAll("any", (Pattern) null, *)   = "any"
  250.      * StringUtils.replaceAll("any", *, null)   = "any"
  251.      * StringUtils.replaceAll("", Pattern.compile(""), "zzz")    = "zzz"
  252.      * StringUtils.replaceAll("", Pattern.compile(".*"), "zzz")  = "zzz"
  253.      * StringUtils.replaceAll("", Pattern.compile(".+"), "zzz")  = ""
  254.      * StringUtils.replaceAll("abc", Pattern.compile(""), "ZZ")  = "ZZaZZbZZcZZ"
  255.      * StringUtils.replaceAll("<__>\n<__>", Pattern.compile("<.*>"), "z")                 = "z\nz"
  256.      * StringUtils.replaceAll("<__>\n<__>", Pattern.compile("<.*>", Pattern.DOTALL), "z") = "z"
  257.      * StringUtils.replaceAll("<__>\n<__>", Pattern.compile("(?s)<.*>"), "z")             = "z"
  258.      * StringUtils.replaceAll("ABCabc123", Pattern.compile("[a-z]"), "_")       = "ABC___123"
  259.      * StringUtils.replaceAll("ABCabc123", Pattern.compile("[^A-Z0-9]+"), "_")  = "ABC_123"
  260.      * StringUtils.replaceAll("ABCabc123", Pattern.compile("[^A-Z0-9]+"), "")   = "ABC123"
  261.      * StringUtils.replaceAll("Lorem ipsum  dolor   sit", Pattern.compile("( +)([a-z]+)"), "_$2")  = "Lorem_ipsum_dolor_sit"
  262.      * }</pre>
  263.      *
  264.      * @param text  text to search and replace in, may be null
  265.      * @param regex  the regular expression pattern to which this string is to be matched
  266.      * @param replacement  the string to be substituted for each match
  267.      * @return  the text with any replacements processed,
  268.      *              {@code null} if null String input
  269.      *
  270.      * @see java.util.regex.Matcher#replaceAll(String)
  271.      * @see java.util.regex.Pattern
  272.      */
  273.     public static String replaceAll(final String text, final Pattern regex, final String replacement) {
  274.         if (ObjectUtils.anyNull(text, regex, replacement)) {
  275.             return text;
  276.         }
  277.         return regex.matcher(text).replaceAll(replacement);
  278.     }

  279.     /**
  280.      * Replaces each substring of the text String that matches the given regular expression
  281.      * with the given replacement.
  282.      *
  283.      * This method is a {@code null} safe equivalent to:
  284.      * <ul>
  285.      *  <li>{@code text.replaceAll(regex, replacement)}</li>
  286.      *  <li>{@code Pattern.compile(regex).matcher(text).replaceAll(replacement)}</li>
  287.      * </ul>
  288.      *
  289.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  290.      *
  291.      * <p>Unlike in the {@link #replacePattern(String, String, String)} method, the {@link Pattern#DOTALL} option
  292.      * is NOT automatically added.
  293.      * To use the DOTALL option prepend {@code "(?s)"} to the regex.
  294.      * DOTALL is also known as single-line mode in Perl.</p>
  295.      *
  296.      * <pre>{@code
  297.      * StringUtils.replaceAll(null, *, *)       = null
  298.      * StringUtils.replaceAll("any", (String) null, *)   = "any"
  299.      * StringUtils.replaceAll("any", *, null)   = "any"
  300.      * StringUtils.replaceAll("", "", "zzz")    = "zzz"
  301.      * StringUtils.replaceAll("", ".*", "zzz")  = "zzz"
  302.      * StringUtils.replaceAll("", ".+", "zzz")  = ""
  303.      * StringUtils.replaceAll("abc", "", "ZZ")  = "ZZaZZbZZcZZ"
  304.      * StringUtils.replaceAll("<__>\n<__>", "<.*>", "z")      = "z\nz"
  305.      * StringUtils.replaceAll("<__>\n<__>", "(?s)<.*>", "z")  = "z"
  306.      * StringUtils.replaceAll("ABCabc123", "[a-z]", "_")       = "ABC___123"
  307.      * StringUtils.replaceAll("ABCabc123", "[^A-Z0-9]+", "_")  = "ABC_123"
  308.      * StringUtils.replaceAll("ABCabc123", "[^A-Z0-9]+", "")   = "ABC123"
  309.      * StringUtils.replaceAll("Lorem ipsum  dolor   sit", "( +)([a-z]+)", "_$2")  = "Lorem_ipsum_dolor_sit"
  310.      * }</pre>
  311.      *
  312.      * @param text  text to search and replace in, may be null
  313.      * @param regex  the regular expression to which this string is to be matched
  314.      * @param replacement  the string to be substituted for each match
  315.      * @return  the text with any replacements processed,
  316.      *              {@code null} if null String input
  317.      *
  318.      * @throws  java.util.regex.PatternSyntaxException
  319.      *              if the regular expression's syntax is invalid
  320.      *
  321.      * @see #replacePattern(String, String, String)
  322.      * @see String#replaceAll(String, String)
  323.      * @see java.util.regex.Pattern
  324.      * @see java.util.regex.Pattern#DOTALL
  325.      */
  326.     public static String replaceAll(final String text, final String regex, final String replacement) {
  327.         if (ObjectUtils.anyNull(text, regex, replacement)) {
  328.             return text;
  329.         }
  330.         return text.replaceAll(regex, replacement);
  331.     }

  332.     /**
  333.      * Replaces the first substring of the text string that matches the given regular expression pattern
  334.      * with the given replacement.
  335.      *
  336.      * This method is a {@code null} safe equivalent to:
  337.      * <ul>
  338.      *  <li>{@code pattern.matcher(text).replaceFirst(replacement)}</li>
  339.      * </ul>
  340.      *
  341.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  342.      *
  343.      * <pre>{@code
  344.      * StringUtils.replaceFirst(null, *, *)       = null
  345.      * StringUtils.replaceFirst("any", (Pattern) null, *)   = "any"
  346.      * StringUtils.replaceFirst("any", *, null)   = "any"
  347.      * StringUtils.replaceFirst("", Pattern.compile(""), "zzz")    = "zzz"
  348.      * StringUtils.replaceFirst("", Pattern.compile(".*"), "zzz")  = "zzz"
  349.      * StringUtils.replaceFirst("", Pattern.compile(".+"), "zzz")  = ""
  350.      * StringUtils.replaceFirst("abc", Pattern.compile(""), "ZZ")  = "ZZabc"
  351.      * StringUtils.replaceFirst("<__>\n<__>", Pattern.compile("<.*>"), "z")      = "z\n<__>"
  352.      * StringUtils.replaceFirst("<__>\n<__>", Pattern.compile("(?s)<.*>"), "z")  = "z"
  353.      * StringUtils.replaceFirst("ABCabc123", Pattern.compile("[a-z]"), "_")          = "ABC_bc123"
  354.      * StringUtils.replaceFirst("ABCabc123abc", Pattern.compile("[^A-Z0-9]+"), "_")  = "ABC_123abc"
  355.      * StringUtils.replaceFirst("ABCabc123abc", Pattern.compile("[^A-Z0-9]+"), "")   = "ABC123abc"
  356.      * StringUtils.replaceFirst("Lorem ipsum  dolor   sit", Pattern.compile("( +)([a-z]+)"), "_$2")  = "Lorem_ipsum  dolor   sit"
  357.      * }</pre>
  358.      *
  359.      * @param text  text to search and replace in, may be null
  360.      * @param regex  the regular expression pattern to which this string is to be matched
  361.      * @param replacement  the string to be substituted for the first match
  362.      * @return  the text with the first replacement processed,
  363.      *              {@code null} if null String input
  364.      *
  365.      * @see java.util.regex.Matcher#replaceFirst(String)
  366.      * @see java.util.regex.Pattern
  367.      */
  368.     public static String replaceFirst(final String text, final Pattern regex, final String replacement) {
  369.         if (text == null || regex == null || replacement == null) {
  370.             return text;
  371.         }
  372.         return regex.matcher(text).replaceFirst(replacement);
  373.     }

  374.     /**
  375.      * Replaces the first substring of the text string that matches the given regular expression
  376.      * with the given replacement.
  377.      *
  378.      * This method is a {@code null} safe equivalent to:
  379.      * <ul>
  380.      *  <li>{@code text.replaceFirst(regex, replacement)}</li>
  381.      *  <li>{@code Pattern.compile(regex).matcher(text).replaceFirst(replacement)}</li>
  382.      * </ul>
  383.      *
  384.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  385.      *
  386.      * <p>The {@link Pattern#DOTALL} option is NOT automatically added.
  387.      * To use the DOTALL option prepend {@code "(?s)"} to the regex.
  388.      * DOTALL is also known as single-line mode in Perl.</p>
  389.      *
  390.      * <pre>{@code
  391.      * StringUtils.replaceFirst(null, *, *)       = null
  392.      * StringUtils.replaceFirst("any", (String) null, *)   = "any"
  393.      * StringUtils.replaceFirst("any", *, null)   = "any"
  394.      * StringUtils.replaceFirst("", "", "zzz")    = "zzz"
  395.      * StringUtils.replaceFirst("", ".*", "zzz")  = "zzz"
  396.      * StringUtils.replaceFirst("", ".+", "zzz")  = ""
  397.      * StringUtils.replaceFirst("abc", "", "ZZ")  = "ZZabc"
  398.      * StringUtils.replaceFirst("<__>\n<__>", "<.*>", "z")      = "z\n<__>"
  399.      * StringUtils.replaceFirst("<__>\n<__>", "(?s)<.*>", "z")  = "z"
  400.      * StringUtils.replaceFirst("ABCabc123", "[a-z]", "_")          = "ABC_bc123"
  401.      * StringUtils.replaceFirst("ABCabc123abc", "[^A-Z0-9]+", "_")  = "ABC_123abc"
  402.      * StringUtils.replaceFirst("ABCabc123abc", "[^A-Z0-9]+", "")   = "ABC123abc"
  403.      * StringUtils.replaceFirst("Lorem ipsum  dolor   sit", "( +)([a-z]+)", "_$2")  = "Lorem_ipsum  dolor   sit"
  404.      * }</pre>
  405.      *
  406.      * @param text  text to search and replace in, may be null
  407.      * @param regex  the regular expression to which this string is to be matched
  408.      * @param replacement  the string to be substituted for the first match
  409.      * @return  the text with the first replacement processed,
  410.      *              {@code null} if null String input
  411.      *
  412.      * @throws  java.util.regex.PatternSyntaxException
  413.      *              if the regular expression's syntax is invalid
  414.      *
  415.      * @see String#replaceFirst(String, String)
  416.      * @see java.util.regex.Pattern
  417.      * @see java.util.regex.Pattern#DOTALL
  418.      */
  419.     public static String replaceFirst(final String text, final String regex, final String replacement) {
  420.         if (text == null || regex == null || replacement == null) {
  421.             return text;
  422.         }
  423.         return text.replaceFirst(regex, replacement);
  424.     }

  425.     /**
  426.      * Replaces each substring of the source String that matches the given regular expression with the given
  427.      * replacement using the {@link Pattern#DOTALL} option. DOTALL is also known as single-line mode in Perl.
  428.      *
  429.      * This call is a {@code null} safe equivalent to:
  430.      * <ul>
  431.      * <li>{@code text.replaceAll(&quot;(?s)&quot; + regex, replacement)}</li>
  432.      * <li>{@code Pattern.compile(regex, Pattern.DOTALL).matcher(text).replaceAll(replacement)}</li>
  433.      * </ul>
  434.      *
  435.      * <p>A {@code null} reference passed to this method is a no-op.</p>
  436.      *
  437.      * <pre>{@code
  438.      * StringUtils.replacePattern(null, *, *)       = null
  439.      * StringUtils.replacePattern("any", (String) null, *)   = "any"
  440.      * StringUtils.replacePattern("any", *, null)   = "any"
  441.      * StringUtils.replacePattern("", "", "zzz")    = "zzz"
  442.      * StringUtils.replacePattern("", ".*", "zzz")  = "zzz"
  443.      * StringUtils.replacePattern("", ".+", "zzz")  = ""
  444.      * StringUtils.replacePattern("<__>\n<__>", "<.*>", "z")       = "z"
  445.      * StringUtils.replacePattern("ABCabc123", "[a-z]", "_")       = "ABC___123"
  446.      * StringUtils.replacePattern("ABCabc123", "[^A-Z0-9]+", "_")  = "ABC_123"
  447.      * StringUtils.replacePattern("ABCabc123", "[^A-Z0-9]+", "")   = "ABC123"
  448.      * StringUtils.replacePattern("Lorem ipsum  dolor   sit", "( +)([a-z]+)", "_$2")  = "Lorem_ipsum_dolor_sit"
  449.      * }</pre>
  450.      *
  451.      * @param text
  452.      *            the source string
  453.      * @param regex
  454.      *            the regular expression to which this string is to be matched
  455.      * @param replacement
  456.      *            the string to be substituted for each match
  457.      * @return The resulting {@link String}
  458.      * @see #replaceAll(String, String, String)
  459.      * @see String#replaceAll(String, String)
  460.      * @see Pattern#DOTALL
  461.      */
  462.     public static String replacePattern(final String text, final String regex, final String replacement) {
  463.         if (ObjectUtils.anyNull(text, regex, replacement)) {
  464.             return text;
  465.         }
  466.         return dotAllMatcher(regex, text).replaceAll(replacement);
  467.     }

  468.     /**
  469.      * Make private in 4.0.
  470.      *
  471.      * @deprecated TODO Make private in 4.0.
  472.      */
  473.     @Deprecated
  474.     public RegExUtils() {
  475.         // empty
  476.     }
  477. }