这篇文章给大家分享的是有关JavaScript字符串如何检索字符的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
具体内容如下
var text="abcdefgh你好,很高兴认识你!";
var str1="abc";
var str2="def";
var str3="ABC";
var str4="很高兴";
function isContain(str,substr){
return new RegExp(substr).test(str);
}
console.log(isContain(text,str1));//true
console.log(isContain(text,str4));//true
console.log(text.indexOf(str1));//0,如果匹配则返回其位置
console.log(text.indexOf(str2));//3
console.log(text.indexOf(str4));//11
console.log(text.indexOf(str3));//-1,如果不匹配则返回-1
console.log(text.indexOf(str1,1));//-1 第二个参数表示从下标为1的地方开始找
console.log(text.lastIndexOf(str1,1));//0,从后向前检索,返回其下标
console.log(text.lastIndexOf(str2));//3
console.log(text.substring(0,5));
//abcde 提取下标之间的字符串,包括第一个参数,不包括第二个参数
console.log(text.slice(0,5));//abcde 根substring作用基本相同
console.log(text.substr(0,3));//abc,第一个参数表示起始下标,第二个参数表示获取的字符长度
console.log(text.match(str1));//返回abc数组,可以使用正则,进行了解
console.log(text.match(str1)[0]);//abc
感谢各位的阅读!关于“JavaScript字符串如何检索字符”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!