Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Help with logic/syntax

by Anonymous Monk
on Jul 25, 2013 at 16:45 UTC ( [id://1046388]=note: print w/replies, xml ) Need Help??


in reply to Help with logic/syntax

the split function requires a regex.

Replies are listed 'Best First'.
Re^2: Help with logic/syntax
by Laurent_R (Canon) on Jul 25, 2013 at 21:18 UTC

    I agree that it is usually better practice to use a regex as a split pattern (and I have upvoted this post, contrary to the majority of viewers as of this writing), because split is really geared on using regex patterns (IMHO), but saying that it requires a regex is somewhat of an exageration: it can work with other expressions like a single character or even a string. Although, with a string, the results can sometimes be sometimes somewhat unexpected when the string contains wierd characters... But using a single character such as '#', as done by the OP, does work fine:

    DB<1> $c = "jdskq#jdskl" DB<2> @d = split '#', $c; DB<3> x @d 0 'jdskq' 1 'jdskl'

      blah blah blah

      split demands a regex, it doesn't accept strings, it takes patterns, doesn't matter how you quote '#' its a regex pattern

Re^2: Help with logic/syntax
by QM (Parson) on Jul 26, 2013 at 09:23 UTC
    the split function requires a regex.
    A string is also a regex, if not a very interesting one.

    -QM
    --
    Quantum Mechanics: The dreams stuff is made of

Log In?
Username:
Password:

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

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

    No recent polls found