// endWith
String.prototype.endsWith=function(str){
if(str==null||str==""||this.length==0||str.length>this.length)
return false;
if(this.substring(this.length-str.length)==str)
return true;
else
return false;
return true;
}
// startWith
String.prototype.startsWith=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;
}
//包含
String.prototype.contains=function(str){
if(str==null||str==""||this.length==0||str.length>this.length){
return false;
}
if(this.indexOf(str) >=0) {
return true;
}else{
return false;
}
return true;
}
String.prototype.endsWith=function(str){
if(str==null||str==""||this.length==0||str.length>this.length)
return false;
if(this.substring(this.length-str.length)==str)
return true;
else
return false;
return true;
}
// startWith
String.prototype.startsWith=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;
}
//包含
String.prototype.contains=function(str){
if(str==null||str==""||this.length==0||str.length>this.length){
return false;
}
if(this.indexOf(str) >=0) {
return true;
}else{
return false;
}
return true;
}