Help for this page

Select Code to Download


  1. or download this
    while (<FILEDATA>) {
      /$TTITLE(\d+)=(.+)$/ and print "$1-$2\n";
    }
    
  2. or download this
    while (<FILEDATA>) {
      /$TTITLE(\d+)=(.+)$/ and push(@titles, "$1=$2\n");
    ...
    
    ## Then just:
    print @titles;