in reply to Re: String Duplication
in thread String Duplication

How could I add that to the code comparing to what I am print using the $1,$2,$3 variables.

Replies are listed 'Best First'.
Re: Re: Re: String Duplication
by jmanning2k (Pilgrim) on Jul 16, 2003 at 17:30 UTC
    Simple.
    $key = $1 . $2 . $3;
    With that and the code in my previous post, you won't print the same $1 $2 $3 combination twice.