此流星服务器代码使用cheerio从html提取文本:

`const myLines = ResObj。$('。panel-body')。text();

哪个console.log如下:javascript - 使用正则表达式从字符串中删除不需要的字符-LMLPHP

使用正则表达式,如何仅获取非空行,例如:

他是
今天不开心
并且需要
选择

我尝试了一些无济于事的方法,例如replace(/(\W\r\n)/, "")等等。

最佳答案

您可以使用此:



myLines = '\r\n          \r\n      He is\r\n \r\n \r\n not happy today\r\n   \r\n   ';
myLines = myLines.replace(/\s*?(^|\n)\s*/g, '$1');
console.log(myLines);

10-07 22:02