js中判断一个字符串包含另外一个字符串的方式比较多? 比如indexOf()方法,注意O是大写. var test="this is a test"; if(test.indexOf("test")!=-1){ //不等于-1表示该字符串包含子字符串. } Jquery 判断当前完整的url是否包含指定的字符串 if (window.location.reload) { if(window.location.href.indexOf("/db/med_st…
indexOf(String s)的使用,如果包含,返回的值是包含该子字符串在父类字符串中起始位置: 如果不包含必定全部返回值为-1 package my_automation; public class z_test { public static void main(String[] args) { String test = "This is test for string"; System.out.println(test.indexOf("This"));…