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

更新时间:2023-06-09 10:56:31 阅读: 评论:0

金融英语词汇
js判断⼀个字符串是以某个字符串开头⽅法1:
vigilante>澳大利亚研究生申请时间
if("123".substr(0, 2) == "12"){
英语词库
console.log(true);
}
柏柏尔人英语四六级准考证打印入口和打印时间⽅法2:
if("123".substring(0, 2) == "12"){
bushel
console.log(true);
}
⽅法3:
hand
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);
scale是什么意思}
if(new RegExp("^12.*$").test(12)) {
console.log(true);
}
if("12".match(new RegExp("^12.*$"))) {    console.log(true);
}

本文发布于:2023-06-09 10:56:31,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/139138.html

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

标签:字符串   打印   时间
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图