/
52.html
152254.html
152255.html
#152256.html
152257.html
8172396.html
8177822.html
8180348.html
仅有的幸福2017-05-18 10:55:03
function delAmpty(str) {
return str.replace(/\s/g,'');
}
alert(delAmpty('hello world'));
大致這個意思 s匹配空白符,replace就ok 你自己試試
注意替換全部要加 /g!
迷茫2017-05-18 10:55:03
我猜是將兩個換行符號替換為一個換行符,另外要考慮到空白行是否包含空格。
上面字串相當於:
a = '\\n\n52.html\n152254.html\n152255.html\n152256.html\n152257.html\n\n8172396.html\n8177822.html\n8180348.html';
我不會 python,是用 JavaScript 實現的:
str.replace(/\n\s*\n/g,'\n');