preg_match 解析html标签并插入变量

发布于 2024-11-27 11:03:19 字数 609 浏览 0 评论 0原文

我有以下标签,我想提取买卖价格:2.9450 和 3.0150

<tr bgcolor="#E8EFF3"> 
<td width="25%" align="center" valign="middle" class="tx11"> 
USD</td> 
<td width="8%" class="tx11">RON </td> 
<td align="right" class="tx11"> 
**2.9450**</td> 
<td width="8%" align="left" class="tx11"></td> 
<td align="right" class="tx11"> 
**3.0150**</td> 
<td width="8%" align="left" class="tx11"></td> 
<td align="right" class="tx11"> 
**2.9249**</td> 
</tr> 
  1. 谁能帮我了解这些值的模式吗?
  2. 如何将值提取到变量中? 谢谢

I have the following tags and I want to extract buying and selling price: 2.9450 and 3.0150

<tr bgcolor="#E8EFF3"> 
<td width="25%" align="center" valign="middle" class="tx11"> 
USD</td> 
<td width="8%" class="tx11">RON </td> 
<td align="right" class="tx11"> 
**2.9450**</td> 
<td width="8%" align="left" class="tx11"></td> 
<td align="right" class="tx11"> 
**3.0150**</td> 
<td width="8%" align="left" class="tx11"></td> 
<td align="right" class="tx11"> 
**2.9249**</td> 
</tr> 
  1. can anyone help me with the pattern for the values please?
  2. how can I extract the values into variables?
    thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2024-12-04 11:03:19
preg_match_all( '/\*\*(.+?)\*\*/s', $str, $matches );

$matches[1][0] 和 $matches[1][1] 将包含您想要的两个数字。

preg_match_all( '/\*\*(.+?)\*\*/s', $str, $matches );

$matches[1][0] and $matches[1][1] will contain the two number you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文