on Wed, 22 May 2002 18:24:40 GMT, Greg D . wrote:

> @data = split (/|/, $name, $email, $passwd)

    @data = split (/\|/, $name, $email, $passwd)

When not escaped by '\', '|' is the 'or' symbol in a regex, so essentially 
you asked a split on nothing or nothing.

-- 
felix

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

Reply via email to