Help for this page

Select Code to Download


  1. or download this
    my @numbers= $text =~ /([-+\d.eE]*\d)/g;
    
  2. or download this
    my @numbers= grep { s/\.$//; /\d/ } $text =~ /([-+\d.eE]+)/g;