Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    {
        print "$1\n" if m/(\S+)/;
    }
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
        m/(\S*)/;
        print "$1\n";
    }