比如要判斷Sting "ERROR543"中,是否包含 "ERROR"
可用
public class test {
public static void main(String[] args){
String a = "ERROR543";
if(a.indexOf("ERRO") != -1)
System.out.println("yes");
else
System.out.println("NO");
}
}
public static void main(String[] args){
String a = "ERROR543";
if(a.indexOf("ERRO") != -1)
System.out.println("yes");
else
System.out.println("NO");
}
}
沒有留言:
張貼留言