- or download this
$needle = "a";
$haystack =~ /\Q$needle\E/i;
$index = $-[0];
- or download this
$needle = "a";
$haystack =~ /\Q$needle\E/i;
$index = pos($haystack)-length($needle);
- or download this
$needle = "a";
$haystack =~ /\Q$needle\E/i;
$index = length($`);