gpt4 book ai didi

JavaScript 正则表达式

转载 作者:行者123 更新时间:2023-12-02 20:38:40 26 4
gpt4 key购买 nike

<th>Prêmio</th>
<td colspan="11">
<div class="res"><img class="r1" src="img/x.gif" alt="Madeira" title="Madeira" />215 | <img class="r2" src="img/x.gif" alt="Barro" title="Barro" />193 | <img class="r3" src="img/x.gif" alt="Ferro" title="Ferro" />192 | <img class="r4" src="img/x.gif" alt="Cereal" title="Cereal" />202</div><div class="carry"><img class="car" src="img/x.gif" alt="carregamento" title="carregamento" />802/1800</div></td></tr></tbody></table><table cellpadding="1" cellspacing="1" class="defender">
<thead>
<tr>

我正在尝试获取“802/1800”,但这让我发疯。如果我使用:

var myregexp = /title="carregamento"/;

有效

但是进入下一步:

var myregexp = /title="carregamento" \/>/

已经返回 null。

var myregexp = /title="carregamento" \/>/;

var match = myregexp.exec(document.documentElement.innerHTML);

FM_log(7,"match="+match);

if (match != null)
resultado.push(match[1]);

最佳答案

您可能应该发布确切的代码,因为可能会出现一些与正则表达式对象无关的轻微错误。

如果我在 regextester.com 上测试这个,效果非常好。

我使用以下正则表达式,它匹配最大 802/1800 的字符串,并将 802/1800 选择到捕获组中。

title="carregamento" \/>(\d+\/\d+)

关于JavaScript 正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2851613/

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