package com.yanshu.tools;
public class Test1 {
public static void main(String[] args) {
String str="https://s.taobao.com/search?cat=54900006&q=FLAM";
if(str.indexOf("ajax")!=-1){
System.out.println("包含");
}else{
System.out.println("不包含");
}
}
}
public class Test1 {
public static void main(String[] args) {
String str="https://s.taobao.com/search?cat=54900006&q=FLAM";
if(str.indexOf("ajax")!=-1){
System.out.println("包含");
}else{
System.out.println("不包含");
}
}
}