Sorry
broquaint I didn't mean to sound rude! ;-)
This problem is with the split function which I often use (but it normally works).
From my earlier post, I had an array named @unique_slopes which if printed to the screen looks like this;
0.1375 0.102999999999999998 0.132500000000000002 0.264333333333333331
+0.636000000000000009 0.537499999999999989
I wish to be able to access each element individually and thought that using 'join' followed by 'split' would allow me to do this;
$unique_slopes = join ('', @unique_slopes);
@unique_slopes = split (/\s+/, $unique_slopes);
Split appears to be returning the original string as a single string accessible by $unique_slopes[[0]], which is not what I wanted.
Do you know of an alternative way to split the array so that I can access individual elements? A whitespace character appears to be present between each number.
Thanks for your time.
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.