in reply to perl extract a specific # from string

The things you're looking for is a regular expression - read 'perlre'.

For the sake of an example:

my ( $temp_value ) = ( $temp =~ m/Temperature ([\d\.]+)F/ );