Help for this page

Select Code to Download


  1. or download this
    my $font_tag_match = m{
               # Tags in pairs like <foo>content</foo>
    ...
    
    # remove all text that is not between a pair of <font> tags..
    $input_data =~ s/^$font_tag_match//mg;
    
  2. or download this
    # Under Construction