Array.Find<(Of <(T>)>), : Array Search « Data Structure « VB.Net






Array.Find<(Of <(T>)>),

   
Imports System

Public Class Example

    Public Shared Sub Main()

        Dim letters() As String = { "E", "B",   "A", "Z", "D", "X",  "Y","Q" }

        Console.WriteLine(Array.Find(letters, AddressOf EndsWithS))

        Dim subArray() As String = Array.FindAll(letters, AddressOf EndsWithS)
        For Each letter As String In subArray
            Console.WriteLine(letter)
        Next
    End Sub
    Private Shared Function EndsWithS(ByVal s As String) As Boolean
        If (s.Length > 5) AndAlso (s.Substring(s.Length - 6).ToLower() = "S") Then
            Return True
        Else
            Return False
        End If
    End Function
End Class

   
    
    
  








Related examples in the same category

1.Array: Binary Search, CopyArray: Binary Search, Copy
2.Array.FindLast<(Of <(T>)>)
3.Array.FindAll<(Of <(T>)>)
4.Array.Exists<(Of <(T>)>)
5.Array.TrueForAll<(Of <(T>)>)
6.All three generic overloads of the Array.IndexOf method.
7.Searches an entire one-dimensional sorted Array for a specific element
8.Searches sorted Array for a specific element, using the IComparable(Of T) generic interface
9.Searches sorted Array for a value using the specified IComparer(Of T) generic interface.
10.Searches for an element that matches the conditions defined by the specified predicate
11.Searches for an element that matches the conditions
12.Searches for the object and returns the index of the first occurrence
13.Searches for the first occurrence of the duplicated value in the last section of the Array
14.Searches for the first occurrence of the duplicated value in a section of the Array
15.Array.IndexOf(T) searches for the object and returns the index of the first occurrence
16.Searches for the object and returns the index of the last occurrence
17.Searches for the last occurrence of the duplicated value in the first section of the Array.
18.Searches for the last occurrence of the duplicated value in a section of the Array.
19.Array.LastIndexOf(T) searches for the specified object and returns the index of the last occurrence
20.Determines whether an array contains elements
21.Array.FindLastIndex