概述
js有indexOf方法,却没有像java同样的startsWith 或者 endsWith 这样的方法。javascript
在js里,统统能够用
indexOf()!=-1 来代替。indexOf()!=-1 和 indexOf()>0 获得的结果是不一样的。
好比下面的例子:(功能:但愿输入的值不包含空格)java
if(str.indexOf(' ') != -1 ){this
alert("不能含有空格");spa
}prototype
这个方法能够检查到 str 的开头,中间,结尾是否是空格。code
但若是用下面这个方法,却只能检测到 str 中间 和 结尾的空格,检测不到str开头的空格。ip
if(str.indexOf(' ')> 0){
alert("不能含有空格");string
}
由于indexOf 的结果是从0开始的, 而 > 0 就是说排除了第一个 !it
js中startWith和endWith的扩展:
io
String.prototype.endWith = function(str){
if(str==null || str=="" || this.length == 0 ||str.length > this.length){
return false;
}
if(this.substring(this.length - str.length)){
return true;
}else{
return false;
}
return true;
};
String.prototype.startWith = function(str){
if(str == null || str== "" || this.length== 0 || str.length > this.length){
return false;
}
if(this.substr(0,str.length) == str){
return true;
}else{
return false;
}
return true;
};
最后
以上就是笨笨衬衫为你收集整理的c语言endswith用法,js中的indexOf以及startsWith和endsWith方法的全部内容,希望文章能够帮你解决c语言endswith用法,js中的indexOf以及startsWith和endsWith方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复