RegEx Question - values

hey there

my RegEx expression stopped working once the temp values dropped below zero .-(

Number:Temperature LOCALWEATHER_outTemp "Temperatur aussen [%.1f °C]" <temperature> { http="<[WeatherObserverCache:5001:REGEX(.*?outTemp.*?value=\"([0-9]*.[0-9]*)\".*)]" }

anybody can help how to declare the value also to accept minus values?

thanks!!

Can you post the original text to apply the regex to, please?

it reads from here
image

for positive values it works
for negative values it ready the next line and results (in case of the screenshot) to 98 but should be -5.2

thanks

Thanks but a screen shot is not an html text.

sorry :expressionless:

            <tr>
                <td bgcolor="#EDEFEF"><div class="item_1">Relative Pressure </div></td>
                <td bgcolor="#EDEFEF"><input name="RelPress" disabled="disabled" type="text" class="item_2" style="WIDTH: 80px" value="1024.20" maxlength="6" /></td>
            </tr>	
            <tr>
                <td bgcolor="#EDEFEF"><div class="item_1">Outdoor Temperature</div></td>
                <td bgcolor="#EDEFEF"><input name="outTemp" disabled="disabled" type="text" class="item_2" style="WIDTH: 80px" value="-0.2" maxlength="5" /></td>
            </tr>

            <tr>
                <td bgcolor="#EDEFEF"><div class="item_1">Outdoor Humidity </div></td>
                <td bgcolor="#EDEFEF"><input name="outHumi" disabled="disabled" type="text" class="item_2" style="WIDTH: 80px" value="92" maxlength="3" /></td>
            </tr>

Try this one:
REGEX(.*outTemp.*value=\"(.*?)\")