in reply to Re: Re: Parse float from string
in thread Parse float from string
Michaelsub parseFloat { my $str = shift; $str =~ /([\d\.]+)/; return $1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Parse float from string
by lanthruster (Initiate) on Nov 24, 2019 at 01:18 UTC |