in reply to Re: Help with logic/syntax
in thread Help with logic/syntax
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'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help with logic/syntax
by Anonymous Monk on Jul 26, 2013 at 01:56 UTC |