Help for this page

Select Code to Download


  1. or download this
    print "Matched" if "dont" =~ m/don(?:(?!t).)*/;
    
  2. or download this
    print "Matched" if "dont" =~ m/don(?:(?!t).)*$/;
    
  3. or download this
    print "Matched" if "dont" =~ m/don[^t]/;