Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: Understanding Split and Join

by ysth (Canon)
on Dec 31, 2006 at 01:44 UTC ( [id://592376]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Understanding Split and Join
in thread Understanding Split and Join

Looks like a case to be fixed either in the docs or in the code of the Perl interpreter itself
I'm not sure what you mean by "fixed"? split doesn't have the special logic for // that match and substitution do, but even those operations don't have special logic for / /x, / # /x or / (?#)/x.

Replies are listed 'Best First'.
Re^4: Understanding Split and Join
by ferreira (Chaplain) on Jan 02, 2007 at 11:01 UTC
    I think I have misunderstood that behavior:
    $ perl -e '@a = split //, 'abc'; print "@a"' a b c $ perl -e '@a = split / /x, 'abc'; print "@a"' a b c $ perl -e '@a = split / # /x, 'abc'; print "@a"' a b c $ perl -e '@a = split / (?#) /x, 'abc'; print "@a"' a b c

    The logic of split does not need to be special for this to work. These are real empty patterns and split understand they are meant to split characters as they return empty delimiters. But you were saying that the same is not automatic for patterns equivalente to /^/. Sorry for the confusion I made.

Log In?
Username:
Password:

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

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

    No recent polls found