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,884 questions

51,810 answers

573 users

How to check whether a string is palindrome or not in VB.NET

2 Answers

0 votes
Imports System

Public Class Program
    Public Shared Function reverseString(ByVal s As String) As String
        Dim arr As Char() = s.ToCharArray()
        
		Array.Reverse(arr)
		
        Return New String(arr)
    End Function

    Public Shared Sub Main()
        Dim s As String = "rotator"

        If s = reverseString(s) Then
            Console.Write("Palindrome")
        Else
            Console.Write("Not Palindrome")
        End If
    End Sub
End Class





' run:
'
' Palindrome
'

 



answered Aug 23, 2021 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim s As String = "rotator", reverse As String = ""

		For i As Integer = s.Length - 1 To 0 step -1
            reverse += s(i)
        Next

        If reverse = s Then
            Console.Write("Palindrome")
        Else
            Console.Write("Not Palindrome")
        End If
    End Sub
End Class





' run:
'
' Palindrome
'

 



answered Aug 23, 2021 by avibootz

Related questions

1 answer 163 views
4 answers 617 views
2 answers 930 views
1 answer 181 views
1 answer 154 views
1 answer 137 views
...