Help for this page

Select Code to Download


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