gpt4 book ai didi

javascript - javascript字符串中每两个单词换行

转载 作者:行者123 更新时间:2023-12-05 08:31:53 28 4
gpt4 key购买 nike

我有一根绳子

string = "example string is cool and you're great for helping out" 

我想每两个单词插入一个换行符,所以它返回:

string = 'example string \n
is cool \n
and you're \n
great for \n
helping out'

我正在处理变量,无法手动执行此操作。我需要一个可以接受这个字符串并为我处理它的函数。

谢谢!!

最佳答案

可以使用字符串的replace方法。

   (.*?\s.*?\s)
  • .*? - 匹配除新行之外的任何内容。惰性模式。
  • \s - 匹配空格字符。

let string = "example string is cool and you're great for helping out" 

console.log(string.replace(/(.*?\s.*?\s)/g, '$1'+'\n'))

关于javascript - javascript字符串中每两个单词换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54791291/

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