in reply to Re: regex match with interpolated pattern
in thread regex match with interpolated pattern
If you are interpolating a string it does not matter if it has characters that are the same as the delimiter. The boundaries of the regex are determined before the interpolation is done. Try this:if ($_ = m%$dm%) { #stuff }
perl -e '$string = "/"; print "08/14/04"=~/$string/ ? "matched\n" : "no match\n"'
|
|---|