码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-09-07 16:00:02      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:asc   function   lob   arch   indexof   class   字符   reference   sea   

方法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判断一个字符串是以某个字符串开头

标签:asc   function   lob   arch   indexof   class   字符   reference   sea   

原文地址:https://www.cnblogs.com/sghy/p/9604813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!