Help for this page

Select Code to Download


  1. or download this
    Name "main::v" used only once: possible typo at ... line ...
    Use of uninitialized value $_ in pattern match (m//) at ... line ..., 
    +<templateFile> line 1.
    street.addressstreet.address=#enter address# city.name=place state.nam
    +e=unknown
    
  2. or download this
    if ($tmpLine =~ /$k/)
    
  3. or download this
    foreach $line (<currentValues>)
    {
    ...
        seek(templateFile, 0, 0);   # <== ADD THIS LINE
        foreach $tmpLine(<templateFile>)
        ...
    
  4. or download this
    use strict;
    use warnings;
    
  5. or download this
    open(my $templateFile...)
    
  6. or download this
    open(my $currentValues, '<', 'current.txt') or die ...