Help for this page

Select Code to Download


  1. or download this
    my $rr = Net::DNS::RR->new_from_string(
    'badtxt.krellis.us. 1234 TXT "something ;something else"'
    );
    
    print '"', $rr->rr_rdata, '"', "\n";
    
  2. or download this
    ""
    
  3. or download this
    "something ;something else"
    
  4. or download this
    my $rr = Net::DNS::RR->new_from_string(
    'badtxt.krellis.us. 1234 TXT "something \" ; \" something else"'
    );
    
    print '"', $rr->rr_rdata, '"', "\n";
    
  5. or download this
    "something " ; " something else"