我正在寻找使用正则表达式删除多个换行符。说我有这个文本:
"On the Insert tab\n \n\nthe galleries include \n\n items that are designed"
然后我想用
"On the Insert tab\nthe galleries include\nitems that are designed"
所以我的要求是:
- 它将删除所有多个换行符并将替换为一个换行符
- 它将删除所有多个空格并替换为一个空格
- 空格也会被修剪
我确实搜索了很多,但找不到解决方案 - 我得到的最接近的是这个Removing冗余换行符与正则表达式。