Java String Ends With endsWith(String str, String suffix, boolean ignoreCase)

Here you can find the source of endsWith(String str, String suffix, boolean ignoreCase)

Description

ends With

License

Apache License

Parameter

Parameter Description
str a parameter
prefix a parameter
ignoreCase a parameter

Declaration

public static boolean endsWith(String str, String suffix, boolean ignoreCase) 

Method Source Code

//package com.java2s;
/*//from  www . jav a  2 s  .c  o m
 * Copyright 2014 the original author or authors.
 *
 * 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.
 *
 * Create Date : 2014-7-11
 */

public class Main {

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

    public static boolean endsWith(String str, String suffix, boolean ignoreCase) {
        if (str == null || suffix == null)
            return str == null && suffix == null;

        int suffixLength;
        int length;
        if ((suffixLength = suffix.length()) > (length = str.length()))
            return false;

        return str.regionMatches(ignoreCase, length - suffixLength, suffix, 0, suffixLength);
    }

    public static int length(String str) {
        return str != null ? str.length() : 0;
    }
}

Related

  1. endsWith(String str, char suffix)
  2. endsWith(String str, String end, boolean caseSensitive)
  3. endsWith(String str, String mark)
  4. endsWith(String str, String suffix)
  5. endsWith(String str, String suffix)
  6. EndsWith(String str, String suffix, int strStartPos)
  7. endsWith(String string, char character)
  8. endsWith(String string, String... end)
  9. endsWith(String string, String... endsWithText)