//功能:扩充String类型的函数功能
String.prototype.trim = function(){ return this.replace(/(^[\\s]*)|([\\s]*$)/g, ""); }
String.prototype.ltrim = function(){ return this.replace(/(^[\\s]*)/g, ""); }
String.prototype.rtime = function(){ return this.replace(/([\\s]*$)/g, ""); }
//计算字符串的长度,一个汉字两个字符
String.prototype.realLength = function(){ return this.replace(/[^\\x00-\\xff]/g,"**").length; }
//功能:检测是否为空或NULL值
String.prototype.isNullOrEmpty = function() { return this.trim().realLength() < 1 ? true : false; }
String.prototype.toLower = function() { return this.toLowerCase(); }
String.prototype.toUpper = function() { return this.toUpperCase(); }
String.prototype.trim = function(){ return this.replace(/(^[\\s]*)|([\\s]*$)/g, ""); }
String.prototype.ltrim = function(){ return this.replace(/(^[\\s]*)/g, ""); }
String.prototype.rtime = function(){ return this.replace(/([\\s]*$)/g, ""); }
//计算字符串的长度,一个汉字两个字符
String.prototype.realLength = function(){ return this.replace(/[^\\x00-\\xff]/g,"**").length; }
//功能:检测是否为空或NULL值
String.prototype.isNullOrEmpty = function() { return this.trim().realLength() < 1 ? true : false; }
String.prototype.toLower = function() { return this.toLowerCase(); }
String.prototype.toUpper = function() { return this.toUpperCase(); }
本文介绍了一组用于增强JavaScript中String类型功能的方法,包括去除空格、计算真实长度等实用功能,适用于处理包含中文字符的字符串。
576

被折叠的 条评论
为什么被折叠?



