我有一个html输出,其中包含:
<span class="value">
Price:<br>
<span style="color:white">23,07€ </span>
</span>
我尝试使用以下方式提取价格:
prices = re.findall(r'<span class="value">.*?(\d{1,3}\.?\d{1,2}).*?</span>',search_result)
有时小数被替换为 - 当有00时,我也需要这2个数字,这些数字被表达式提取23 07加入2307
感谢您的时间。