As usual, I'm dealing with a list of objects that came from a database. So I ask for one more than the number I really want so that I can tell if there are more to come. Before I actually display the items, I pop the last one off the list -- except in the case that this is the last page, in which case the last one is a real item.

Aside: I'm thinking about a different approach -- since I know what offset I'm at, how many objects I show on each page and how many objects are in the total list, I shouldn't have to fall back to 'getting an extra one' -- but that's a comment for another node. And I've also read (somewhere) about a module that takes care of all such list related functions, I jsut haven't used any of them yet. So many modules, so little time.

So, in my final implementation I actually took the array, popped off the extra one (if I wasn't on the last page) and did the search on that.

But as a somewhat experienced Perl dude, I should have remembered the $#array bit to provide me with the index of the last member of the array and been able to go from there. Sometimes stuff doesn't come loose when I shake my head. :( That's when I resort to Perl Monks. :)

Thanks for your response.

Alex / talexb / Toronto

Life is short: get busy!


In reply to Re: Re: Trying to slice off all array elements but the last one by talexb
in thread Trying to slice off all array elements but the last one by talexb

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.