It seems as the delimiters were deleted, but the print is a little tricky
First, you had the string:
my $line = "a whole lotta shakin >pattern here< goin on";
and you did
my @bits_and_pieces = split /></, $line;
What did it make?
This code "splits" the string, searching '><' as delimiter.
Because of '><' is not matched in the string, in @bits_and_pieces you will have only one element, and it would be
'a whole lotta shakin >pattern here< goin on'
(all the string)
In the other hand, you did this
my $line = "a whole lotta shakin ><pattern here>< goin on";
my @bits_and_pieces = split /></, $line;
Then, perl searches '><' in the string and splits it into an array.
So @bits_and_pieces would be now
('a whole lotta shakin ','pattern here',' goin on')
If you print @bits_and_pieces with
print @bits_and_pieces;
is printed
'a whole lotta shakin pattern here goin on'
as if the delimiters '><' where removed from the array.
Hope this help
Hopes
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.