gpt4 book ai didi

javascript - 在 JavaScript 中查找句子中的单词?

转载 作者:行者123 更新时间:2023-11-30 23:58:52 25 4
gpt4 key购买 nike

我已经设置了列表

示例:

const answerList = [{index: 2, answer: nice}, {index: 5, answer: sunday} ...] 

就这样

我有一句话

示例:

“嗨,我是西奥,很高兴见到你。你好吗”

所以我想检查句子中是否有正确答案,如果找到,则返回answerList set

示例:

return value is [{index: 2, answer: nice}]

因为句子里有一个“nice”这个词。

谁能告诉我一个好方法吗?

最佳答案

您可以尝试使用Array.prototype.filter()String.prototype.includes() :

const answerList = [{index: 2, answer: 'nice'}, {index: 5, answer: 'sunday'}];
const sentence = "hi i'm theo nice to meet you. how are you";
var res = answerList.filter(a => sentence.includes(a.answer));
console.log(res);

关于javascript - 在 JavaScript 中查找句子中的单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60878819/

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