⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filter.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package HTML::Filter;use strict;use vars qw(@ISA $VERSION);require HTML::Parser;@ISA=qw(HTML::Parser);$VERSION = sprintf("%d.%02d", q$Revision: 2.11 $ =~ /(\d+)\.(\d+)/);sub declaration { $_[0]->output("<!$_[1]>")     }sub process     { $_[0]->output($_[2])          }sub comment     { $_[0]->output("<!--$_[1]-->") }sub start       { $_[0]->output($_[4])          }sub end         { $_[0]->output($_[2])          }sub text        { $_[0]->output($_[1])          }sub output      { print $_[1] }1;__END__=head1 NAMEHTML::Filter - Filter HTML text through the parser=head1 NOTEB<This module is deprecated.> The C<HTML::Parser> now provides thefunctionally of C<HTML::Filter> much more efficiently with the theC<default> handler.=head1 SYNOPSIS require HTML::Filter; $p = HTML::Filter->new->parse_file("index.html");=head1 DESCRIPTIONC<HTML::Filter> is an HTML parser that by default prints theoriginal text of each HTML element (a slow version of cat(1) basically).The callback methods may be overridden to modify the filtering for someHTML elements and you can override output() method which is called toprint the HTML text.C<HTML::Filter> is a subclass of C<HTML::Parser>. This means thatthe document should be given to the parser by calling the $p->parse()or $p->parse_file() methods.=head1 EXAMPLESThe first example is a filter that will remove all comments from anHTML file.  This is achieved by simply overriding the comment methodto do nothing.  package CommentStripper;  require HTML::Filter;  @ISA=qw(HTML::Filter);  sub comment { }  # ignore commentsThe second example shows a filter that will remove any E<lt>TABLE>sfound in the HTML file.  We specialize the start() and end() methodsto count table tags and then make output not happen when inside atable.  package TableStripper;  require HTML::Filter;  @ISA=qw(HTML::Filter);  sub start  {     my $self = shift;     $self->{table_seen}++ if $_[0] eq "table";     $self->SUPER::start(@_);  }  sub end  {     my $self = shift;     $self->SUPER::end(@_);     $self->{table_seen}-- if $_[0] eq "table";  }  sub output  {      my $self = shift;      unless ($self->{table_seen}) {	  $self->SUPER::output(@_);      }  }If you want to collect the parsed text internally you might want to dosomething like this:  package FilterIntoString;  require HTML::Filter;  @ISA=qw(HTML::Filter);  sub output { push(@{$_[0]->{fhtml}}, $_[1]) }  sub filtered_html { join("", @{$_[0]->{fhtml}}) }=head1 SEE ALSOL<HTML::Parser>=head1 COPYRIGHTCopyright 1997-1999 Gisle Aas.This library is free software; you can redistribute it and/ormodify it under the same terms as Perl itself.=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -