Help for this page

Select Code to Download


  1. or download this
    sub characters {
      my ($self, $chars) = @_;
      $self->{buffered_text} .= $chars->{Data};
      ...
    }
    
  2. or download this
    sub get_buffered_text {
      my $self = shift;
    ...
      $self->{buffered_text} = '';
      return $text;
    }
    
  3. or download this
    sub get_buffered_text {
      my $self = shift;
      (($_, $self->{buffered_text}) = ($self->{buffered_text}, ''))[0];
    }