I have a html output that contains this:
<span class="value">
Price:<br>
<span style="color:white">23,07€ </span>
</span>
I tried to extract the prices using:
prices = re.findall(r'<span class="value">.*?(\d{1,3}\.?\d{1,2}).*?</span>',search_result)
sometimes the decimals are replaced with -- when there are 00, also i need this 2 numbers that get extracted by the expression 23 07 joined 2307
Thank you for your time.