Help for this page

Select Code to Download


  1. or download this
    filename => '@',            # @ = array (of char) = string
    
  2. or download this
    filename => '$',
    
  3. or download this
    use strict;
    use warnings;
    ...
    printf "File ID:  %s\n", $doc->fileID;
    printf "Filename: %s\n", $doc->filename;
    printf "Tags:     %s\n", join(', ', @{ $doc->tags });
    
  4. or download this
    22:52 >perl 1068_SoPW.pl
    File ID:  123
    ...
    Tags:     tag1, tag2, tag3
    
    22:52 >