in reply to Complicated regexp problem
You're asking for trouble by putting your pattern in a string before using it in a regex. To avoid multiple-quoting headaches, use qr like this:
my $regexp = qr{(?:ftp:\/\/)?\/{5}(a-z_)\/}; if ($link =~ /$regexp/) { ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Complicated regexp problem
by johngg (Canon) on Aug 02, 2017 at 22:22 UTC |