Help for this page

Select Code to Download


  1. or download this
    print "Enter file name and path of .ins to parse:\n";
    my $filename1 = <STDIN>;
    ...
    
    foreach my $line (@file) {
    
  2. or download this
    if ($line =~ /EditorName/) {
    my @name = split(/\s+/, $line); 
    my $first = $name[1]; 
    ...
    return $found;
    }