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

更新时间:2023-05-29 16:34:57 阅读: 评论:0

js判断⼀个字符串是以某个字符串开头⽅法1:
if("123".substr(0, 2) == "12"){
console.log(true);
}
⽅法2:
过门不入if("123".substring(0, 2) == "12"){
性爱高潮
console.log(true);
}
⽅法3:
春节快乐英语if("123".slice(0,2) == "12"){
console.log(true);
}
⽅法4:
if("123".indexOf("12") == 0) {
console.log(true);
}
⽅法5:
,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".arch("12") != -1) {低成本战略
console.log(true);
}
if(new RegExp("^12.*$").test(12)) {
手机mac地址console.log(true);
}
if("12".match(new RegExp("^12.*$"))) {    console.log(true);
}

本文发布于:2023-05-29 16:34:57,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/807738.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字符串   翻译   青春   晨会
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图