Array.prototype.removeBeginWithVal(删除数组内以某值开头的字符串对象)

Array扩展方法:

 1 //author: Kenmu
 2 //created time: 2015-03-16
 3 //function: 删除数组内以某值开头的字符串对象
 4 Array.prototype.removeBeginWithVal = function (val) {
 5     for(var i=0, len = this.length; i < len; i++) {
 6         if(this[i].indexOf(val) != -1) {
 7             this.splice(i, 1);
 8             break;
 9         }
10     }
11 }; 

 

调用方式:

1 var arr =["Kenmu", "DemandTypeStringCode"];
2 arr.removeBeginWithVal("DemandTypeStringCode"); //arr.length=1 after the operation of removeBeginWithVal

 

posted @ 2015-05-28 17:12  KenmuHuang  阅读(393)  评论(0编辑  收藏  举报
如果您看完本篇博文,觉得对您有所收获,请点击右下角的 [推荐]
如果您想转载,请注明出处(原创内容,请尊重个人劳动成果)
如果您有任何意见或建议,欢迎留言
感谢您的阅读,敬请关注我的后续博客文章