Help for this page

Select Code to Download


  1. or download this
    s/\babc\s+//;
  2. or download this
    print unless /\babc\b/;
  3. or download this
    print if /(\w+) nevermind/ && $1 ne "abc";
  4. or download this
    print if /(?<!abc) nevermind/;