码迷,mamicode.com
首页 > 其他好文 > 详细

字符串处理

时间:2016-03-23 13:15:23      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

replace

str.replace(/<\/?[^>]*>/g,‘‘); //去除HTML tag

str.replace(/[ | ]*\n/g,‘\n‘); //去除行尾空白

str.replace(/\n[\s| | ]*\r/g,‘\n‘); //去除多余空行

str.replace(/ /ig,‘‘);//去掉

str.replace(/^[\s ]+|[\s ]+$/g, "");//去掉全角半角空格

str.replace(/[\r\n]/g,"");//去掉回车换行

str.replace(/(^/s*)|(/s*$)/g, ""); // 去掉左右空格

str.replace(/(^/s*)/g, ""); // 去掉左空格

str.replace(/(/s*$)/g, ""); // 去掉右空格

join

arr=["1","1","1","1"];

str=arr.join(",");    //str=1,1,1,1

split

str="1,1,1,1";

arr=str.split(",");    //["1","1","1","1"];

 

字符串处理

标签:

原文地址:http://www.cnblogs.com/sweetyu/p/5310534.html

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