Help for this page

Select Code to Download


  1. or download this
      push(@inputfiles, qq{$inputPathPrefix/test4.xml});
      push(@inputfiles, qq{$inputPathPrefix/test5.xml});
      push(@inputfiles, qq{$inputPathPrefix/test6.xml});
      push(@inputfiles, qq{$inputPathPrefix/test7.xml});
    
  2. or download this
      my @files = (qw/test4.xml test5.xml test6.xml test7.xml/); # assumin
    +g you know $inputPathPrefix will be the same for all of them
      push @inputfiles, @files;
    
  3. or download this
      my @files = (qw{$inputPathPrefix/test4.xml $inputPathPrefix/test5.xm
    +l $inputPathPrefix/test6.xml $inputPathPrefix/test7.xml});
    
  4. or download this
      my @files = (q{$inputPathPrefix/test4.xml}, q{$inputPathPrefix/test5
    +.xml}, q{$inputPathPrefix/test6.xml}, q{$inputPathPrefix/test7.xml});