Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果旁边没有字符,我正在尝试删除换行符。
我想保持 Line1、Line2、Line3 不变,但 Line3 之后和 Line1 之前的中断被删除。
我试过了:
Element.value = Element.value.replace(/\n?![A-z]/g, "");
我不太擅长正则表达式。
谢谢。
.replace(/(\r?\n){2,}/g, '\n').replace(/^\r?\n|\r?\n$/g, '');
演示
此正则表达式用单个换行符替换 2 个或更多换行符的序列,然后删除前导和尾随换行符。