Help for this page

Select Code to Download


  1. or download this
    abc
    The pattern follows 
    <page> 24 
    
    def
    
  2. or download this
    $pattern='(\n\s*[0-9]{1,3}\s*\n\s*<page>\s*\n)';
    if ($target_data =~ /$pattern/gi)
    ...
        {
           $target_data =~ s/$pattern/" " x length($1)/gie;
        }