Help for this page
$s="a*"; /$s/; # same as /a*/, finds a string of a's /\Q$s\E/; # same as /a\*/, literally matches "a*" characters.