Help for this page

Select Code to Download


  1. or download this
    my ($file)  = $string =~ /<file>([^<]+)/;
    my ($line)  = $string =~ /<line>([^<]+)/;
    my ($type)  = $string =~ /<type>([^<]+)/;
    my ($codee) = $string =~ /<codee>([^<]+)/;
    my ($desc)  = $string =~ /<desc>([^<]+)/;
    
  2. or download this
    my %info; # a better name should be picked
    foreach ( qw/ file line type codee desc / ) {
      my ($info{$_}) = $string =~ /<\Q$_\E>([^<]+)/;
    }