java中endsWith()方法

今天给大家讲一个API

public boolean endsWith(String suffix)

  suffix -- 代表指定的后缀。

  这个方法用于测试字符串是否以指定的后缀结束

 如果参数表示的字符序列是此对象表示的字符序列的后缀,则返回 true;否则返回 false。

我们来举个列子



public class TestDemo {
    /*
    判断字符串是否是以.java文件结尾
     */
    public static void main(String[] args) {
        String s = "HelloWorld.java";
        if(s.endsWith(".java")){
            System.out.println("该字符串是以.java为结尾");
        }
    }
}
//打印
该字符串是以.java为结尾

 

java中endsWith()方法java中endsWith()方法 兰陵平君 发布了17 篇原创文章 · 获赞 5 · 访问量 276 私信 关注
上一篇:C# extract img url from web content then download the img


下一篇:Python 字符串内置函数(二)