gpt4 book ai didi

javascript - 如何减少除换行符外的额外空格

转载 作者:行者123 更新时间:2023-11-29 22:06:55 24 4
gpt4 key购买 nike

replace(/\s+/g,' '); 将所有空格减少到一个空格,包括换行符。有时我有超过 1 个空格,我想将其减少为一个,保留新行,中断。

最佳答案

你应该使用:

string = string.replace(/ {2,}/g, ' ');
  • \s 匹配所有空格,包括换行符。

或使用前瞻:

string = string.replace(/ +(?= )/g, '');

关于javascript - 如何减少除换行符外的额外空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20433154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com