Help for this page

Select Code to Download


  1. or download this
    $ perl -E'
    for ("cat","a dog") { say if /\ba/; }
    '
    
  2. or download this
    a dog
    
  3. or download this
    $ perl -E'
    for ("cat","a dog") { say if /\Ba/; }
    '
    
  4. or download this
    cat