What is the smartest way of searching through an array of strings for a matching string in Perl?
One caveat, I would like the search to be case-insensitive
so "aAa" would be in ("aaa","bbb")
|
|
I guess
would do the trick. |
|||
|
|
It depends on what you want the search to do:
All these examples do similar things at their core, but their implementations have been heavily optimized to be fast, and will be faster than any pure-perl implementation that you might write yourself with grep, map or a for loop. Note that the algorithm for doing the looping is a separate issue than performing the individual matches. To match a string case-insensitively, you can simply use the |
|||||||||
|
|
Perl 5.10+ contains the 'smart-match' operator The nice thing is that it also supports regexes, meaning that your case-insensitive requirement can easily be taken care of:
|
||||
|
|
|
|||
|
|
|
If you will be doing many searches of the array, AND matching always is defined as string equivalence, then you can normalize your data and use a hash.
Let me emphasize that doing a hash lookup is good if you are planning on doing many lookups on the array. Also, it will only work if matching means that |
|||
|
|