Help for this page

Select Code to Download


  1. or download this
    sub regex_created { '^Record created on (.*).$' }
    sub regex_expires { '^Record expires on (.*).$' }
    
  2. or download this
    sub regex_created { '^\s*Record created on\s+(.*).' }
    sub regex_expires { '^\s*Record expires on\s+(.*).' }
    
  3. or download this
    my $text = $self->_send_to_sock( $sock );
    # ...
    
    $self->parse_text($text);