Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "Volume: $data{volume}\n";
    print "Issue: $data{issue}\n";
    print "Year: $data{year}\n";
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
        print ucfirst($1).": $2\n";
      }
      close(IN);
    
  3. or download this
    <volume>4</volume>
    <issue>12</issue>
    <year>2003</year>
    <pages>200</pages>
    <author>A N Other</author>
    
  4. or download this
    Volume: 4
    Issue: 12
    Year: 2003
    Pages: 200
    Author: A N Other