码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript String Operation

时间:2015-04-04 14:55:53      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

// Trim() , Ltrim() , RTrim()
String.prototype.Trim = function(){ 
	return this.replace(/(^\s*)|(\s*$)/g, ""); 
} 
String.prototype.LTrim = function(){ 
	return this.replace(/(^\s*)/g, ""); 
} 
String.prototype.RTrim = function() { 
	return this.replace(/(\s*$)/g, ""); 
}

var Cts = "bblText";  

if(Cts.indexOf("Text") >= 0 )  
{  
    alert(‘Cts中包含Text字符串‘);  
}

  

Javascript String Operation

标签:

原文地址:http://www.cnblogs.com/wangjianxa/p/4392032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!