Help for this page

Select Code to Download


  1. or download this
    # You had
    for ($l_count = 1; $l_count < $l_len; $l_count++)
    ...
    # To build up a string like this you should be using the 'x' operator
    my $lower = '9' x $l_len;
    
  2. or download this
    use constant MATCH => 1;  # Return value for good match
    use constant FAIL  => 0;  # Retrun value for failed match
    ...
    
    }