Here you can find the source of endsWith(String str, String suffix, boolean ignoreCase)
Parameter | Description |
---|---|
str | a parameter |
prefix | a parameter |
ignoreCase | a parameter |
public static boolean endsWith(String str, String suffix, boolean ignoreCase)
//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; } }