in reply to making regex case insensitive
if ($array_A[$ds] =~ /test/i) [download]
There is also:
This is especially useful if you want part of the pattern case-sensitive and part not. For example, the first letter may be upper or lowercase but the rest must be lowercase.