the following casts the selected string as double and then returns only those which are less than 5
$results = Foreach ($line in $list) {
    $val = [double]$line.Split('=')[3].Trim().TrimEnd('s')
    if($val -lt 5) {
        $val
    }
}
1
solved Split a logfile