Help for this page

Select Code to Download


  1. or download this
    while( $file =~ /\Q$start\E(.*?)\Q$end\E/sg )
    {
        $a = $1;
    ...
        }
        print $match, "\n";
    }
    
  2. or download this
    blah blah
    /* comment 1 */
    
    ...
        */ 
        outer 
    */
    
  3. or download this
    prompt$ regex.pl '/*' '*/'
    /* comment 1 */
    /* comment 2 */
    ...
        */
        outer
    */