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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,285 questions

52,311 answers

573 users

How to use string.Compare() to compare two strings in VB.NET

1 Answer

0 votes
Imports System

Public Class CompareTwoStrings
    Public Shared Sub Main()
        Dim s1 As String = "abc"
        Dim s2 As String = "abc"
        Dim n As Integer = String.Compare(s1, s2) ' 0 : s1 = s2
        Console.WriteLine(n)
		
        s1 = "abc"
        s2 = "Abc"
        n = String.Compare(s1, s2) ' -1 = s1 < s2
        Console.WriteLine(n)
		
        s1 = "Abc"
        s2 = "abc"
        n = String.Compare(s1, s2) ' 1 = s1 > s2 
        Console.WriteLine(n)
        
		s1 = "abc"
        s2 = "Abc"
        n = String.Compare(s1, s2, True)
        Console.WriteLine(n) ' 0 : s1 = s2
		
        s1 = "a"
        s2 = "A"
        n = String.Compare(s1, s2) ' -1 : s1 < s2
        Console.WriteLine(n)
		
        s1 = "b"
        s2 = "a"
        n = String.Compare(s1, s2) ' 1 : s1 > s2
        Console.WriteLine(n)
    End Sub
End Class



' run:
'
' 0
' -1
' 1
' 0
' -1
' 1
'

 



answered Mar 17, 2025 by avibootz
...