Try:

        @x2 = split(/,|;/, $token);

That worked for me properly, while the code you provided displayed the
error.  I'm also running v5.8.0, but LANG=en_US.UTF-8.

--Ade.


> > #!/usr/bin/perl
> > 
> > while(<>)
> > {
> >         @x1 = split(/[\t\n ]+/, \$_);
> > print \$., " ", scalar @x1, ": ";
> >         foreach \$token (@x1)
> >         {
> >                 @x2 = split(/[,;]/, \$token);
> > print scalar @x2;
> >         }
> > print "\n";
> > }



-- 
Psyche-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/psyche-list

Reply via email to