gpt4 book ai didi

javascript - 从数组中删除单个单词条目

转载 作者:行者123 更新时间:2023-12-02 14:09:03 25 4
gpt4 key购买 nike

我需要知道如何从充满多单词条目的数组中删除单个单词条目。这是数组的示例:

输入:

[ "Off the bloody wall", "who?", "That sounds familiar" , "lol", "what the hell"  ]

期望输出

[ "Off the bloody wall", "That sounds familiar" , "what the hell"  ]

我可以为此构建一个多阶段解决方案,但也许这里有人知道快速的单行 jQuery 解决方案?

最佳答案

您可以使用 Array.protype.filter 删除未传递谓词函数的元素,并使用 String.prototype.match 测试字符串是否匹配。在这种情况下,如果属性没有空格,我们会过滤掉该属性。

const arr = [ "Off the bloody wall", "who?", "That sounds familiar" , "lol", "what the hell"  ]

console.log(
arr.filter(item => item.match(' '))
)

关于javascript - 从数组中删除单个单词条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39806682/

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