in reply to Re^3: Regex helpin thread Regex help
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.