Help for this page

Select Code to Download


  1. or download this
    if (/^(Info I want.+)Start of Info/) {
        print $1 ;
    }
    
  2. or download this
    print $1 if ( /^Info I want$(.*)^Start of Info$/m )
    
  3. or download this
    print $1 if ( /^Info I want\n+(.*?)\n+Start of Info$/m )