码迷,mamicode.com
首页 > 其他好文 > 详细

String类之endsWith方法--->检测该字符串以xx为结尾

时间:2016-01-02 18:20:40      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

endsWith(XX)方法是java内置类String类的一个内置方法,我们直接拿来用即可了,下边是api说明:检测该字符串以xx为结尾,结果返回布尔值

技术分享

 

public class Demo {
    public static void main(String[] args)  {
        String Str="神雕侠侣.mp4";
        System.out.println(Str.endsWith(".mp4"));
    }
}

true

 

String类之endsWith方法--->检测该字符串以xx为结尾

标签:

原文地址:http://www.cnblogs.com/flyings/p/5094922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!