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.

39,933 questions

51,870 answers

573 users

How to compare two strings ignoring case in VB.NET

2 Answers

0 votes
Imports System
 
Public Class CompareCaseInsensitiveString_VB_NET
    Public Shared Sub Main(ByVal args As String())
        Dim s1 As String = "c# vb JAVA", s2 As String = "C# VB java"
 
        If s1.IndexOf(s2, StringComparison.OrdinalIgnoreCase) >= 0 Then
            Console.WriteLine("Equal")
        Else
            Console.WriteLine("Not Equal")
        End If
    End Sub
End Class




' run:
'
' Equal
'

 



answered Aug 23, 2024 by avibootz
edited Aug 23, 2024 by avibootz
0 votes
Imports System
Imports System.Text.RegularExpressions

Public Class CompareCaseInsensitiveString_VB_NET
	Public Shared Sub Main(ByVal args As String())
        Dim s1 As String = "c# vb JAVA", s2 As String = "C# VB java"
        Dim b As Boolean = Regex.IsMatch(s2, s1, RegexOptions.IgnoreCase)

        If b Then
            Console.WriteLine("Equal")
        Else
            Console.WriteLine("Not Equal")
        End If
    End Sub
End Class




' run:
'
' Equal
'

 



answered Aug 23, 2024 by avibootz

Related questions

1 answer 115 views
1 answer 103 views
1 answer 107 views
107 views asked Aug 23, 2024 by avibootz
1 answer 102 views
1 answer 92 views
1 answer 130 views
2 answers 140 views
...