Help for this page

Select Code to Download


  1. or download this
    a 
    b
    ...
    d
    e
    f
    
  2. or download this
    open(FILE,"<some.file");
    $string = <FILE>;
    @array = split(/^\n/,$string); # split where the \n is the first thing
    + on that line.
    # then do stuff with each element in @array.