Jump to content

Recommended Posts

Posted

Hi guys,

What is the quickest way to find the last element of an array? _arraymax() finds the highest value but id like the last element in the array regardless of its value. I couldn't find a function that would find the size of an array. The arrays would be different sizes. Thanks!

-Mason

Posted (edited)

Quick 'n' dirty... (that's what they call me)

Global Const $array[3] = [1, 2, 3]

Global Const $element = LastElement($array)

ConsoleWrite($element & @LF)

Func LastElement(ByRef Const $array)

    Return UBound($array)

EndFunc ;==>$lastElement
Edited by jaberwocky6669
  • Developers
Posted (edited)

  On 8/8/2010 at 3:08 PM, 'jaberwocky6669 said:

Quick 'n' dirty... (that's what they call me)

Global Const $array[3] = [1, 2, 3]

Global Const $element = LastElement($array)

ConsoleWrite($element & @LF)

Func LastElement(ByRef Const $array)

    Return UBound($array)

EndFunc ;==>$lastElement

mmm... Not sure what func LastElement is supposed to do more than UBound() here?

or did you mean?:

Func LastElement(ByRef Const $array)

    Return $Array[UBound($array)-1]

EndFunc ;==>$lastElement
Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

  On 8/8/2010 at 3:19 PM, 'Jos said:

or did you mean?:

Func LastElement(ByRef Const $array)

 Return $Array[UBound($array)-1]

EndFunc ;==>$lastElement

Criminy! Wow, I totally overlooked the obvious bug in my code. Thanks Jos. I saw the '3' and assumed it was the value of the element!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...