Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
        $_ .= <DATA>;
        s/^0\s*(.*)\n\s+(.*\n)/$1 $2/s;
        print;
    }
    
  2. or download this
    {  local $/ = undef;
       $_ = <DATA>;
        s/^0\s*(.*)\n\s+(.*\n)/$1 $2/s;
        print;
    }