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 删除。