Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    @numerics = ($data =~ /([\d\.]+)/g);
    
    print "*$_*\n" for @numerics;
    
  2. or download this
    ---------- Capture Output ----------
    > "c:\perl\bin\perl.exe" _new.pl
    ...
    *99.79*
    
    > Terminated with exit code 0.