$var=~/(?:regex(catch_this)|)/; # My regex or nothing I've also tried: $var=~/(?:regex(catch_this)|.{0})/; #My regex or very literally nothing It always matches my regex when it looks like this: $var=~/regex(catch_this)/;