in reply to Re^2: What is the * postfix operator, pre-'feature postderef'?
in thread What is the * postfix operator, pre-'feature postderef'?
If you want the first numeric field I'd use:
($uptime) = $uptime =~ /(\d+)/;
which makes the intent much clearer. What's with the ref(\$uptime)?
|
|---|