Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    print "Please enter the string to be searched for the string 'monkey':
    +";
    print "String 'monkey' was ",<>!~/monkey/&&'not ',"found in the input 
    +string.";
    
  2. or download this
    #!/usr/bin/perl
    print "Please enter the string to be searched for the string 'monkey':
    +\n";
    print "String 'monkey' was ",<>!~/monkey/&&'not ',"found in the input 
    +string.\n";