Java String remove from end ignoring case

Description

Java String remove from end ignoring case

//package com.demo2s;

public class Main {
  public static void main(String[] argv) throws Exception {
    String str = "demo2s.com";
    String remove = "COM";
    System.out.println(removeEndIgnoreCase(str, remove));
  }/*w w w  . ja  v a 2 s. c  om*/

  /**
   * The empty String <code>""</code>.
   * 
   * @since 2.0
   */
  public static final String EMPTY = "";

  /**
   * <p>
   * Case insensitive removal of a substring if it is at the end of a source
   * string, otherwise returns the source string.
   * </p>
   *
   * <p>
   * A <code>null</code> source string will return <code>null</code>. An empty
   * ("") source string will return the empty string. A <code>null</code> search
   * string will return the source string.
   * </p>
   *
   * <pre>
   * removeEnd(null, *)      = null
   * removeEnd("", *)        = ""
   * removeEnd(*, null)      = *
   * removeEnd("www.domain.com", ".com.")  = "www.domain.com."
   * removeEnd("www.domain.com", ".com")   = "www.domain"
   * removeEnd("www.domain.com", "domain") = "www.domain.com"
   * removeEnd("abc", "")    = "abc"
   * </pre>
   *
   * @param str
   *          the source String to search, may be null
   * @param remove
   *          the String to search for (case insensitive) and remove, may be null
   * @return the substring with the string removed if found, <code>null</code> if
   *         null String input
   * @since 2.4
   */
  public static String removeEndIgnoreCase(String str, String remove) {
    if (isEmpty(str) || isEmpty(remove)) {
      return str;
    }
    if (endsWithIgnoreCase(str, remove)) {
      return str.substring(0, str.length() - remove.length());
    }
    return str;
  }

  /**
   * <p>
   * Case insensitive check if a String ends with a specified suffix.
   * </p>
   *
   * <p>
   * <code>null</code>s are handled without exceptions. Two <code>null</code>
   * references are considered to be equal. The comparison is case insensitive.
   * </p>
   *
   * <pre>
   * endsWithIgnoreCase(null, null)      = true
   * endsWithIgnoreCase(null, "abcdef")  = false
   * endsWithIgnoreCase("def", null)     = false
   * endsWithIgnoreCase("def", "abcdef") = true
   * endsWithIgnoreCase("def", "ABCDEF") = false
   * </pre>
   *
   * @see java.lang.String#endsWith(String)
   * @param str
   *          the String to check, may be null
   * @param suffix
   *          the suffix to find, may be null
   * @return <code>true</code> if the String ends with the suffix, case
   *         insensitive, or both <code>null</code>
   * @since 2.4
   */
  public static boolean endsWithIgnoreCase(String str, String suffix) {
    return endsWith(str, suffix, true);
  }

  public static boolean isEmpty(String str) {
    return str == null || str.length() == 0;
  }

  public static boolean endsWith(String str, String suffix) {
    return endsWith(str, suffix, false);
  }

  /**
   * <p>
   * Check if a String ends with a specified suffix (optionally case insensitive).
   * </p>
   *
   * @see java.lang.String#endsWith(String)
   * @param str
   *          the String to check, may be null
   * @param suffix
   *          the suffix to find, may be null
   * @param ignoreCase
   *          inidicates whether the compare should ignore case (case insensitive)
   *          or not.
   * @return <code>true</code> if the String starts with the prefix or both
   *         <code>null</code>
   */
  private static boolean endsWith(String str, String suffix, boolean ignoreCase) {
    if (str == null || suffix == null) {
      return (str == null && suffix == null);
    }
    if (suffix.length() > str.length()) {
      return false;
    }
    int strOffset = str.length() - suffix.length();
    return str.regionMatches(ignoreCase, strOffset, suffix, 0, suffix.length());
  }
}


/*
 * 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.
 */



PreviousNext

Related