devxlogo

ArrLongestItem – The value and index of the longest element of an array of any type

ArrLongestItem – The value and index of the longest element of an array of any type

' The longest item in an array of any type' (it applies the LEN function to all the items in the array'  and then takes the highest value)'' FIRST and LAST indicate which portion of the array' should be considered; they default to the first' and last element, respectively' if LONGESTINDEX is specified, it receives the index of' the longest element of the arrayFunction ArrLongestItem(arr As Variant, Optional ByVal First As Variant, _    Optional ByVal Last As Variant, Optional LongestIndex As Long) As Variant    Dim index As Long    Dim maxLength As Long        If IsMissing(First) Then First = LBound(arr)    If IsMissing(Last) Then Last = UBound(arr)        ArrLongestItem = arr(First)    maxLength = Len(ArrLongestItem)    LongestIndex = First        For index = First + 1 To Last        If maxLength 

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist