Jump to content

find last element of array


Recommended Posts

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

  • Developers

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.
  :)

Link to comment
Share on other sites

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!
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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