Help for this page

Select Code to Download


  1. or download this
    if(Dumper($page) =~ /===Comments===(.*?)=Microarray Data=/s) {  
                $lit_comments = $1; 
            }
    
  2. or download this
    while(Dumper($page) =~ /===Comments===(.*?)=Microarray Data=/gs) {  
                $lit_comments = $1; 
            }
    
  3. or download this
    Dumper($page) =~ s/===Comments===(.*?)=Microarray Data=/&my_process($&
    +)/ges;
    
    ...
    
        return $content;
    }