
KevinR
Veteran

Aug 27, 2008, 10:16 AM
Post #2 of 3
(1389 views)
|
|
Re: [per'l'over] could you explain the meaning of the regex
[In reply to]
|
Can't Post
|
|
it means that if the value of the variable $ARGV[0] begins with a - (dash) or a + (plus) the match is true, for example: $ARGV[0] = '-foo'; #<-- matches true $ARGV[0] = '+foo'; #<-- matches true $ARGV[0] = 'foo';#<-- matches false -------------------------------------------------
|