in reply to Regex match inside quotes doesn't work
if (not $string =~ s/\Q$search/$replace/) { [download]
Note that / can be used as the delimiter, since neither the pattern nor the replacement contain literal slashes.