关键字:Java 字符串匹配
有一个String,如何查询其中是否有y和f字符?最黑暗的办法就是:
程序1:我知道if、for语句和charAt()啊。
class Test{
public static void main(String args[]) {
String str="For my money, the important thing "+"about the meeting was bridge-building";
char x=’y’;
char y=’f’;
boolean result=false;
for(int i=0;i<str.length;i++){
char z=str.charAt(i); //System.out.println(z);
if(x==z||y==z) {
result=true;
break;
}
else result=false;
}
System.out.println(result);
}
}
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/