gpt4 book ai didi

javascript - 使用正则表达式获取字符串

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

我有这样的命令:添加“第一项”并减去“第三道菜”,忽略“最后的力量”。

我如何提取所有字符串以便它输出一个数组:["first item", "third course", "the final power"]

最佳答案

尝试使用匹配 quotetextquote 的正则表达式,然后使用 map 删除捕获的引号:

const string = 'add "first item" and subtract "third course", disregard "the final power".';

const quotes = string.match(/\"(.*?)\"/g).map(e => e.split("\"")[1]);

console.log(quotes);

关于javascript - 使用正则表达式获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54489333/

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