Help for this page

Select Code to Download


  1. or download this
    $s = "match";
    $re = qr/$s/;
    print "yup" if $something =~ $re;
    
  2. or download this
    $s = "match";
    print "yup" if $something =~ /$s/;