Normally, split returns the bits either side of the delimiter, but not the delimiter itself. You've overridden that behaviour by adding capturing parens around the delimiter. Hence, it treats your input string as consisting of a sequence of null strings separated by 6 character delimiters which you've also asked it to capture:

(null)df5434(null)vg7856(null)fg3472(null)sd1234(null)jh45r5";

Basically, you're using the wrong tool for the job. m// does what you want:

print for "df5434vg7856fg3472sd1234jh45r5" =~ m[(\w{2}.{4})]g;; df5434 vg7856 fg3472 sd1234 jh45r5

But actually, the most efficient way of breaking a string into fixed length fields is unpack:

print for unpack '(a6)*', "df5434vg7856fg3472sd1234jh45r5";; df5434 vg7856 fg3472 sd1234 jh45r5

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re: split() behavior by BrowserUk
in thread split() behavior SOLVED by gman

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.