in reply to Re: summarize similar strings
in thread summarize similar strings
FYI the above code only initializes $Pattern to an empty string. To init all 3 vars:my ($Pattern, $c1, $c2) = '';
my ($Pattern, $c1, $c2) = ('') x 3;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: summarize similar strings
by harangzsolt33 (Deacon) on Dec 28, 2019 at 21:45 UTC |