Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: Function Split, bug or error in the documentation?

by ikegami (Patriarch)
on Jul 31, 2020 at 14:30 UTC ( [id://11120145]=note: print w/replies, xml ) Need Help??


in reply to Re: Function Split, bug or error in the documentation?
in thread Function Split, bug or error in the documentation?

split_e( // ), short for split_e( $_ =~ m// ), performs a match operation. You want split_e( qr// ).

split is an operator. And like all operators, it has full control over the syntax of its operands. split /.../, ... is functionally equivalent to split qr/.../, .... Keep in mind that split predates qr//.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-25 20:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found