gpt4 book ai didi

javascript - 使用 zapier 创建链接数组

转载 作者:行者123 更新时间:2023-12-03 03:54:44 30 4
gpt4 key购买 nike

我在 Zapier 中有一个带有 typeform 的用例,其中我收到了 2-30 个(本质上是未知数量)指向 typeform 中文件的链接,并希望使用 zapier 将它们放入数组中。

我通过通知电子邮件的正文 html(定义为 inputData 中的正文字段)获取文本中的链接。每个链接均采用以下格式:

<a href=\'https://admin.typeform.com/form/results/file/download/<FORMNUMBER>/<VARIABLE>/<FILENAME>.pdf\'>report.pdf</a>

我已经这样做了,但我总是得到 null:

output = [{id: 123, hello: "world"}];
var array_of_matches = inputData.body.match(/href="([^"]*")/g);
console.log(array_of_matches);

最佳答案

您的 HTML 对 href 值使用单引号,但正则表达式尝试匹配双引号。尝试使用 match(/href='([^']*')/g); 代替。

关于javascript - 使用 zapier 创建链接数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45000889/

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