gpt4 book ai didi

javascript - 当连续单词长度为 50 个字符时插入空格

转载 作者:行者123 更新时间:2023-11-28 13:59:40 24 4
gpt4 key购买 nike

我想将此字符串切成 50 个字符,其中(在空格之后)它开始计数到 ​​50(不包括空格),如果该部分超过 50,它将插入一个空格。到目前为止,我可以将其剪切,但我不知道如何指定“排除空格”。尝试过[^\s],但没有任何乐趣。

var str = " http://this.domain.com/fff/222/widget.css http://www.domain.com/myfolder/uploads/1/3/3/7/2332053/custom_themes/8787687678644/more_custom_themes/files/my-main_style.css?8763487634 http://cdn.domain.com/folder/images/thisfolder/common.css?9444"
str.replace(/\s(\w.{50})/g,' $1 ');

最佳答案

试试这个:

var str = " http://this.domain.com/fff/222/widget.css http://www.domain.com/myfolder/uploads/1/3/3/7/2332053/custom_themes/8787687678644/more_custom_themes/files/my-main_style.css?8763487634 http://cdn.domain.com/folder/images/thisfolder/common.css?9444"
str = str.replace(/([^ ]{50})/g, "$1 ");

关于javascript - 当连续单词长度为 50 个字符时插入空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6189688/

24 4 0
文章推荐: html -
每三个
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com