devxlogo

Check if a Given String Is a Palindrome

Check if a Given String Is a Palindrome


This code checks if a given string is a palindrome.

 Public Function IsPalindrome(strToCheck As String) As BooleanDim iForward As IntegerDim iBack As IntegerDim iMid As IntegerDim bPalindrome As BooleanIsPalindrome = FalsebPalindrome = TrueOn Error GoTo ERR_IsPalindrome     iBack = Len(strToCheck)    iMid = iBack / 2    iForward = 1     If (iBack < 1) Then       Exit Function    End If    Do While (iForward <> iBack And iForward <= iMid)       If (Mid(strToCheck, iForward, 1) <> Mid(strToCheck, iBack, 1)) Then          bPalindrome = False          Exit Do       End If       iBack = iBack - 1       iForward = iForward + 1    Loop     IsPalindrome = bPalindrome    Exit Function  ERR_IsPalindrome:     Debug.Print "Error: " & Err.Description  End Function
See also  How to Create and Deploy QR Codes Online: A Comprehensive Guide
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist