Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to find the largest and the smallest word in a string with VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim s As String = "vb sharp c cpp python java"

        Dim words() = s.Split(" ")

        Dim max As String = words(0), min As String = words(0)

        Dim w As String
        For Each w In words
            If (w.Length > max.Length) Then
                max = w
            End If
            If (w.Length < min.Length) Then
                min = w
            End If
        Next

        Console.WriteLine("The largest word is: {0}", max)
        Console.WriteLine("The smallest word is: {0}", min)

    End Sub

End Module



' run:
' 
' The largest word is: python
' The smallest word Is: c
'

 





answered Mar 21, 2017 by avibootz
edited Sep 14, 2021 by avibootz

Related questions

...