判断字符串中是否包含某个字符

判断字符串中是否包含某个字符

public static void main(String[] args) {
String str = “abc”;
boolean status = str.contains(“a”);
if(status){
System.out.println(“包含”);
}else{
System.out.println(“不包含”);
}
}

此方法返回true,如果此字符串包含,否则返回false。

public static void main(String[] args) {
String str = “粵aio23”;
String str1 = “粤”;
boolean status = str.contains(“粵”);
if(status){
System.out.println(“包含”);
}else{
System.out.println(“不包含”);
}
//简繁转换
str= str.replace(“粵”, “粤”);
System.out.println(str);
//大小写转换
str= str.toUpperCase();
str= str.replace(“I”, “1”);
str= str.replace(“O”, “0”);
System.out.println(str);

}