Help for this page

Select Code to Download


  1. or download this
    @sections = split /\n\n/, join("", @infile);
  2. or download this
    open(IN,"./$file");
    {
    ...
       chomp(@sections = <IN>);
    }
    close(IN);