Your answer is not quite right. test with this:
$a = "12||23||34||45";
@a = split("\|\|", $a);
print join(",", @a);
Instead of giving you,
12,23,34,45
It gives you
1,2,|,|,2,3,|,|,3,4,|,|,4,5
You have to say:
$a = "12||23||34||45";
@a = split(/\|\|/, $a);
print join(",", @a);
Or, if you want to use quots, say:
$a = "12||23||34||45";
@a = split("\\|\\|", $a);
print join(",", @a);
The reason is simple:
- For that "|", you need to escape it within regexp, but not within quots.
- For that "\", you have to escape it within quots.
So if you say "\\|",
- First it is being intepreted by the quots as "\|",
- Then it is being further interpreted by the regexp as "|".
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.