Vb.net array element query method code

Source: Internet
Author: User

Vb.net array element query method code

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

Searches for an instance of a specified Element in the array.

Imports System
Imports System. Collections. Generic

Public Class Example
Public Shared Sub Main ()

Dim numbers () As String = {"Ten", "Two", "One", "Three", "Four", "Nine "}

For Each num As String In numbers
Console. WriteLine (num)
Next

Array. Sort (numbers)

For Each num As String In numbers
Console. WriteLine (num)
Next

Dim index As Integer = Array. BinarySearch (numbers, "Four ")
Console. WriteLine (index)

Index = Array. BinarySearch (numbers, "One ")
Console. WriteLine (index)

End Sub

End Class

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.