in reply to Using grep with wildcards

I have a feeling you're using grep in the wrong way.

this is a powerful tool when used correctly.
AFAIK, this is how it is used:

@newArray = grep { condition } @arrayToFilter;

the condition is usually a RegEx, so you can use any combination of RegEx so you call "wildcards" ie: \.. : a "." with any other character immediately after it.

I hope this helps.. and eventually is correct :)

Update: fixed HTML missing tag.
He who asks will be a fool for five minutes, but he who doesn't ask will remain a fool for life.