Help for this page

Select Code to Download


  1. or download this
        my ($var,$val) = /^\s*(.*?)\s*=\s*(.*)/;
        $conf{$var} = $val;
    
  2. or download this
        if (/^\s*(.*?)\s*=\s*(.*)/) {
            $conf{$1} = $2;
        } else {
            die "slowly and painfully";
        }