Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    @m = $dat =~ /STRUCT/g;
    shift (@m);
    foreach (@m) {print "$_\n"};
    
  2. or download this
    @m = $dat =~ /(.*?)(?:STRUCT|$)/g;
    shift (@m);
    ...
    shift(@m);
    shift(@m);
    foreach (@m) {print "$_\n"};