gpt4 book ai didi

javascript - 如何检查一个单词在 JSON 数组中出现了多少次

转载 作者:行者123 更新时间:2023-11-30 09:11:57 24 4
gpt4 key购买 nike

我的 JSON 数组如下所示:

    {
"messages": [
{
"msg": "?",
"name": "johndoe"
},
{
"msg": "hello",
"name": "johndoe",
},
{
"msg": "twitt",
"name": "johndoe"
},
{
"msg": "hello everyone!",
"name": "johndoe"
},
{
"msg": "hello! how are you",
"name": "johndoe"
},
{
.........

我想知道如何检查“hello”这个词在整个数组中出现了多少次,然后只返回数字。感谢您的帮助。

最佳答案

let helloCount = data.messages.filter(message=>{return message.msg.includes('hello')}).length;

试试上面的一个

关于javascript - 如何检查一个单词在 JSON 数组中出现了多少次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58011040/

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