Help for this page

Select Code to Download


  1. or download this
    '.' =~ /./;      # match
    'a' =~ /./;      # match
    '.' =~ /\Q.\E/;  # match
    'a' =~ /\Q.\E/;  # no match
    
  2. or download this
    $search = '.';
    '.' =~ /$search/;      # match
    'a' =~ /$search/;      # match
    '.' =~ /\Q$search\E/;  # match
    'a' =~ /\Q$search\E/;  # no match