- or download this
sub getSubjects($)
{
...
my @aSubNos = $$ref_sRecord =~ m/<subno>(.+?)<\/subno>/sig;
....
}
- or download this
....
<level>1</level>
...
<subtxt>Subject 2</subtxt>
</subject>
....
- or download this
my @aSubNos = $$ref_sRecord =~ m/<subno>(.+?)<\/subno>/sig;
- or download this
my $sString = $$ref_sRecord;
my @aSubNos = $sString =~ m/<subno>(.+?)<\/subno>/sig;