Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my @array;
$array[50] = 'HELP';
my $index_number;
foreach my $i (0..$#array) {
if (($array[$i] || "") =~ m/HELP/) {
$index_number = $i;
last;
}
}
if (defined $index_number) {
print "String found at index: $index_number\n";
} else {
print "String not found.\n";
}