Help for this page

Select Code to Download


  1. or download this
    while($data =~ m/\n\s*(\w+)\s+(.*);/g){
        my $typ = $1;
        my $dat =  $2;
        print "$typ::$dat>>\n";
    }
    
  2. or download this
    "my" variable $typ:: can't be in a package at core_parse_2.pl line 21,
    + near "my $typ:: "
    
  3. or download this
    while($data =~ m/\n\s*(\w+)\s+(.*);/g){
        my $typ = $1;
    ...
        my $dat =  $2;
        print "$typ::$dat>>\n";
    }
    
  4. or download this
    while($data =~ m/\n\s*(\w+)\s+(.*);/g){
        print "$1::$2>>\n";
    }
    
  5. or download this
    while($data =~ m/\n\s*(\w+)\s+(.*);/g){
        my $typ = $1;
        my $dat =  $2;
        print $typ . "::" . $dat . ">>\n";
    }