Using index function. : index « String « Perl
- Perl
- String
- index
Using index function.
#!/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");
}
Related examples in the same category