Help for this page

Select Code to Download


  1. or download this
                chomp $_;
    
    ...
                if ($array[0] eq "") {
                    shift (@array)
                }
    
  2. or download this
                # Split the line by whitespace
                my @array = split;
    
  3. or download this
                while (<@array>) {
    
  4. or download this
                while (glob join $", @array) {
    
  5. or download this
                foreach (@array) {