前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Java startsWith()

Java startsWith()

作者头像
用户7886150
修改2021-04-06 10:41:55
5240
修改2021-04-06 10:41:55
举报
文章被收录于专栏:bit哲学院

参考链接: Java字符串之-startsWith()

startsWith() 

startsWith():方法确定字符串是否以指定字符串的字符开头,根据需要返回true或false。  废话不多说,上代码。  eg: 

public class FirstDemo {

    public static void main(String[] args){

        String str, str1, str2, str3;

        str = "wo shi yi ge xiaoxuesheng,jin nian 10 sui la";

        str1 = "wo sh";

        str2 = "wo bu shi";

        str3 = "ge xiaoxuesheng";

        //startsWith(prefix)测试此字符串是否以指定的前缀开头(str1是否和str的前缀相同)。 

        System.out.println(str.startsWith(str1));

        System.out.println(str.startsWith(str2));

        //startsWith(prefix, toffset)测试在指定索引处开始的此字符串的子字符串是否以指定的前缀开头(str3是否与str的第10个字符(从0开始索引)开始的前缀相同)。

        System.out.println(str.startsWith(str3, 10));   

    }

测试结果: 

true

false

true

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档