Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Split loop error with perl 5.8

by brianarn (Chaplain)
on Oct 18, 2002 at 00:02 UTC ( [id://206194]=note: print w/replies, xml ) Need Help??


in reply to Split loop error with perl 5.8

I'm going to stick up for Red Hat here - I just installed 8.0, and during my config, I couldn't help but read PM. Probably dangerous as root, but hey. Here's a copy and paste, using grinder's example.
[root@localhost root]# cat split.pl #! /usr/bin/perl -w use strict; my $x1 = 'aaa bbb cc'; my $x2 = 'aa, bb, cc'; print join( '-', split(/[\s,]+/, $x1)), "\n"; print join( '-', split(/[\s,]+/, $x2)), "\n"; [root@localhost root]# ./split.pl aaa-bbb-cc aa-bb-cc [root@localhost root]# perl -v This is perl, v5.8.0 built for i386-linux-thread-multi
Seems to have worked just fine for me, so now I think it's a context thing, something about how you're using it. :) I'm using the Perl available via RPM, I haven't downloaded a snippet of source yet except for grinder's code. hehe.

~Brian

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://206194]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 08:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found