in reply to Re^3: search of a string in another string with 1 wildcard
in thread search of a string in another string with 1 wildcard
How do you find this?
my @matches = ( qr/abcdef/, qr/abfdef/,#for simplicity, limited to 2 choices ); if ($line ~~ @matches){ ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: search of a string in another string with 1 wildcard
by AnomalousMonk (Archbishop) on Oct 12, 2014 at 20:48 UTC |