Hi:
I am using a statement currently as follows
if(($node =~ /ma/) && ($node =~ /ny/))

Using the following statement does not seem to be
giving expected results
if($node =~ /(ma&&ny)/

where as: if(($node =~ /ma/) | ($node =~ /ny/)) 
is same as
if($node =~ /(ma|ny)/)

Thanks
Ravi

__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more
http://platinum.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to