Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: split giving me a splitting headache

by toolic (Bishop)
on Apr 24, 2013 at 18:37 UTC ( [id://1030480]=note: print w/replies, xml ) Need Help??


in reply to split giving me a splitting headache

Then don't use split:
use warnings; use strict; my $str = "x.z.y"; my ($first, $second) = $str =~ /(.+)\.([^.]+)$/; print "$first,$second\n"; __END__ x.z,y

Replies are listed 'Best First'.
Re^2: split giving me a splitting headache
by Anonymous Monk on Apr 24, 2013 at 18:40 UTC
    Good point. Thanks!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 17:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found