- or download this
my @sections = $str =~ m/^===Comments===\n(.*?)\n=.*?=$/gms;
...
print " $2 : $1\n";
}
- or download this
$VAR1 = [
'
...
Aditional Info :
Comments related to the pathway information here.
- or download this
my %x = map {
/^=([^\n]*)=\n.*\n===Comments===\n(.*)$/s ? ( $1 => $2 ) : ()
} split(/(?=^=[^=])/m,$str);
print Dumper(\%x);
- or download this
$VAR1 = {
'Microarray Data' => '
...
'
};