Help for this page

Select Code to Download


  1. or download this
    package Foo::Parse;
    
    ...
    
    my $fp = Foo::Parse::Splitter->new('FooParser');
    $fp->parse($_) while <>;
    
  2. or download this
    my $fp;
    $fp = Foo::Parse->new('FooParser',
    ...
          $fp->warn("something wrong!");
        split /,/;
      } );