js判断一个字符串是以某个字符串开头

Posted 枫叶布

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断一个字符串是以某个字符串开头相关的知识,希望对你有一定的参考价值。

方法1:

substr() 方法

if("123".substr(0, 2) == "12"){
    console.log(true);
}

方法2:

substring() 方法

if("123".substring(0, 2) == "12"){
    console.log(true);
}

方法3:

slice()方法

if("123".slice(0,2) == "12"){
    console.log(true);
}

方法4:

indexOf() 方法

if("123".indexOf("12") == 0) {
    console.log(true);
}

方法5:

startsWith(),endsWith(),不过兼容不好

console.log("123".startsWith("12")); //true

console.log("123".endsWith("23")); //true

// 兼容
if (typeof String.prototype.startsWith != ‘function‘) {
 String.prototype.startsWith = function (prefix){
  return this.slice(0, prefix.length) === prefix;
 };
}

方法6:

正则

if("123".search("12") != -1) {
    console.log(true);
}

if(new RegExp("^12.*$").test(12)) {
    console.log(true);
}

if("12".match(new RegExp("^12.*$"))) {
    console.log(true);
}

 

以上是关于js判断一个字符串是以某个字符串开头的主要内容,如果未能解决你的问题,请参考以下文章

js判断字符串以啥开头

js 判断一个字符是不是以某个字符串开头

javascript怎么判断字符串是以啥开头的

JS如何判断字符串是以指定字符串结尾

你好,js中 使用~~可以去掉字符串开头的0 但如果全是数字并很长的话,就会变成其他数字请问~~是做啥用的

js判断字符串中是不是存在某些字符的方法