gpt4 book ai didi

c# - 正则表达式将数字提取到组中

转载 作者:太空宇宙 更新时间:2023-11-03 20:33:26 25 4
gpt4 key购买 nike

我有简单的 html 代码:

<span class="someclass" title="4.5 stars"></span>

或者它可能是:

<span class="someclass" title="5 stars"></span>

我使用了 ((\d+\.\d+)|(\d+)) star 但它提取了 3 个组,我需要一个带有数值的组。

如何在一组中使用正则表达式提取两个字符串中的 4.5 和 5?

谢谢!

最佳答案

尝试删除内部括号:

(\d+\.\d+|\d+) star

此外,您可能希望首先考虑使用 HTML 解析器提取属性,而不是将正则表达式直接应用于原始 HTML。

关于c# - 正则表达式将数字提取到组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6276844/

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