Java String Ends With endsWith(CharSequence s, char c)

Here you can find the source of endsWith(CharSequence s, char c)

Description

Determine if the string s ends with the char c .

License

Apache License

Parameter

Parameter Description
s the string to test
c the tested char

Return

true if s ends with the char c

Declaration

public static boolean endsWith(CharSequence s, char c) 

Method Source Code

//package com.java2s;
/*/*from   w ww  . j a v a2s.  co  m*/
 * Copyright 2012 The Netty Project
 *
 * The Netty Project licenses this file to you 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.
 */

public class Main {
    /**
     * Determine if the string {@code s} ends with the char {@code c}.
     *
     * @param s the string to test
     * @param c the tested char
     * @return true if {@code s} ends with the char {@code c}
     */
    public static boolean endsWith(CharSequence s, char c) {
        int len = s.length();
        return len > 0 && s.charAt(len - 1) == c;
    }
}

Related

  1. endsWith(byte[] subject, byte[] suffix)
  2. endsWith(char s[], int len, char suffix[])
  3. endsWith(char[] fieldDescriptor, char c)
  4. endsWith(CharSequence cs, CharSequence suffix)
  5. endsWith(CharSequence cs, String postfix)
  6. endsWith(CharSequence s, char c)
  7. endsWith(CharSequence s, CharSequence seq)
  8. endsWith(CharSequence s, CharSequence sub)
  9. endsWith(CharSequence seq, char... any)