in reply to Re^3: Regex help
in thread Regex help

It's easier to say

Use /\Q$variable\E/

than

Use /\Q$variable/ except if that's not the entire regexp pattern. You probably have to use /\Q$variable\E/ then.