首页 > 开发 > 综合 > 正文

正则表达式Replace

2024-07-21 02:16:16
字体:
来源:转载
供稿:网友
string.prototype.trim= function()
{
// 用正则表达式将前后空格
// 用空字符串替代。
return this.replace(/(^/s*)|(/s*$)/g, "");
}





// 有空格的字符串
var s = " leading and trailing spaces ";

// 显示 " leading and trailing spaces (35)"
window.alert(s + " (" + s.length + ")");

// 删除前后空格
s = s.trim();
// 显示"leading and trailing spaces (27)"
window.alert(s + " (" + s.length + ")");

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表