1月13日- startWith 和 endWith 的相同结果写法

public class zifuchuanlianxi {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根

        
        
        String str = "abcedjiakel";
        
        if (str.indexOf("abc")==0)
        {
            System.out.println("是以abc开始");
        }
        
        
        if (str.indexOf("l")==str.length()-1)
        {
            System.out.println("是以l结束");
        }



      //输出结果:是以abc开始
      //输出结果:是以l结束


        
    }

}

 

posted on 2016-01-13 21:05  一方通行o  阅读(211)  评论(0编辑  收藏  举报

导航