Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
                                            #an "off-by-one" error, Oops!
    print "$random_file\n";
    
  2. or download this
    #Chapter 8.6. Picking a Random Line from a File
    #Problem: You want to return a random line from a file.
    ...
    
    srand;
    rand($.) < 1 && ($line = $_) while <>;