Ⅰ js 判斷某字元串中是否存在一段字元串
varresult='某字元串中';
//js判斷某字元串中,如果存在「23or」,則輸出存在其他字元
if(!!result.match('23or')){
console.log('存在其他的字元');
}
Ⅱ 判斷java或js中的某個字元串中是否包含有某個
js中:
varCts = "aaddssyes";
if(Cts.indexOf("yes") > 0 ){
alert('Cts中包含Text字元串');
}
找的是最開始的位置,如果沒找到,則返回的是-1.
functionIndexDemo(str){
varstr1 = "BABEBIBOBUBABEBIBOBU"
vars = str1.indexOf(str);
return(s);
}
str是外邊傳來的一個字元串
java中:
public static void main(String[] args) {
String str="ABC_001";
if(str.indexOf("ABC")!=-1){
System.out.println("包含");
}else{ System.out.println("不包含");
}
}