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