Help for this page

Select Code to Download


  1. or download this
    if ($info =~ /(hi|lo)\s+(\d{1,3}).F/i) {
        # do something with $1 and $2
    }
    
  2. or download this
    if ($info =~ /(hi|lo)\s+(-?\d{1,3}).F/i) {
        # do something with $1 and $2
    }