Help for this page

Select Code to Download


  1. or download this
    map { 
        if ( m/^(.+?)\((\d+)\)\s-\s\[(.+?)\].+?"(.*?)"\.$/ )
    ...
            [$_,$disc_file,$page,$key];
        }
    }
    
  2. or download this
    map {
        m/^(.+?)\((\d+)\)\s-\s\[(.+?)\]/
            ? [$_,$1, $2, $3]
            : ()
    }