正则去除空格、回车、换行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

var testStr="ab

cd";

var resultStr=testStr.replace(/\ +/g,"");//去掉空格

resultStr=testStr.replace(/[ ]/g,""); //去掉空格

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

resultStr= testStr.replace(/(\n)/g, "");
resultStr= testStr.replace(/(\t)/g, "");
resultStr= testStr.replace(/(\r)/g, "");
resultStr= testStr.replace(/<\/?[^>]*>/g, "");
resultStr= testStr.replace(/\s*/g, "");

//去除空格
String.prototype.Trim = function() {
return this.replace(/\s+/g, "");
}

//去除换行
function ClearBr(key) {
key = key.replace(/<\/?.+?>/g,"");
key = key.replace(/[\r\n]/g, "");
return key;
}

//去除左侧空格
function LTrim(str) {
return str.replace(/^\s*/g,"");
}

//去右空格
function RTrim(str) {
return str.replace(/\s*$/g,"");
}

//去掉字符串两端的空格
function trim(str) {
return str.replace(/(^\s*)(\s*$)/g, "");
}

//去除字符串中间空格
function CTim(str) {
return str.replace(/\s/g,'');
}

//是否为由数字组成的字符串
function is_digitals(str) {
var reg=/^[0-9]*$/; //匹配整数
return reg.test(str);
}

正则去除空格、回车、换行
http://example.com/2018-03-12 正则去除空格、回车、换行/
作者
csorz
发布于
2018年3月12日
许可协议