gpt4 book ai didi

javascript - 如何从字符串中创建一个数组并在每个单词的末尾保留空格和标点符号?

转载 作者:行者123 更新时间:2023-11-30 07:33:39 25 4
gpt4 key购买 nike

以这个字符串为例:

'The strong, fast and gullible cat ran over the street!'

我想创建一个接受这个字符串并创建以下数组的函数:

['The ','strong, ','fast ','and ','gullible ','cat ','ran ','over ','the ','street!']

请注意,我想在每个单词之后保留每个标点符号和空格。

最佳答案

这个正则表达式将匹配你想要的:/[^\s]+\s*/g;

示例:

var str = 'The strong, fast and gullible cat ran over the street!';
var result = str.match(/[^\s]+\s*/g);

console.log(result);

关于javascript - 如何从字符串中创建一个数组并在每个单词的末尾保留空格和标点符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41901604/

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