Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
  2. or download this
    open FILE, "/home/ajb004/Paradigms/roster.txt" or die $!;
    
  3. or download this
            $_;
    
  4. or download this
                    $_ = $word;
                    s/_/ /g;
                    print "ID: $_\n";
    
  5. or download this
                    $word =~ s/_/ /g;
                    print "ID: $word\n";
    
  6. or download this
    while ( my $line = <FILE> )
    {
    ...
                    print "ID: $word\n";
            }
    }
    
  7. or download this
    #!/usr/bin/perl
    use strict;
    ...
    TEXT
    }