in reply to Pulling up files starting with specific letters
'body*' is a string that has a 'star' in it. It certainly is not a wild card.
you must use 'matching' with regular expressions.
I suggest you scan the docs for how this all works, or check out some of the tutorials.if ($subject =~ /^body/) { # do something }
Have fun.
|
|---|