You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
218 B
Perl

#!/usr/local/bin/perl
$input = <STDIN>;
$position = index($input, "the");
if ($position >= 0) {
print ("pattern found at position $position\n");
} else {
print ("pattern not found\n");
}