这里我给大家介绍三种简单的方法
一、使用String类中的contains(CharSequence s)方法
使用contains(CharSequence s)方法时,当且仅当此字符串包含指定的字符或字符串时,返回 true,否则返回false。
如判断字符串s1中是否出现字符串"abc",格式如下:
if(s1.contains("abc")){
System.out.println("含有");
}
else System.out.println("不含有");
二、使用String类中的indexOf(String str)方法
使用该方法时,如果字符串参数作为一个子字符串在此对象中出现,则返回第一个这种子字符串的第一个字符的索引;如果它不作为一个子字符串出现,则返回 -1。
如判断字符串s1中是否出现字符串"abc",格式如下:
if(s1.indexOf("abc")!=-1){
System.out.println("含有");
}else System.out.println("不包含");
三、使用String类中的matches( String regex)方法
该方法当且仅当此字符串匹配给定的正则表达式时,返回 true,使用该方法时先定义一个正则表达式。
如判断字符串s1中是否出现字符串"abc",格式如下:
String regex=".*abc.*";//定义一个正则表达式
System.out.println(s1.matches(regex));
if(s1.matches(regex)){
System.out.println("含有");
}
else System.out.println("不含有");