The command that's causing this error is:

        my @refs = split('[', $references);
I also tried   >>> my @refs = split("[", $references);  <<<  (doublle
quotes instead)
and got the same error.
If I change it to

        my @refs = split("asdfsdfas", $references);

then I get no such error.

The only thing I can think of is that the Perl compiler is dead wrong
here - it's treating my search string as a left bracket that needs to
be matched up.

The Perl exe is that latest copy from ActiveState.

Any thoughts/work arounds would be all kinds of appreciated.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to