Could somebody please help me with this example! I'm only a beginner.
(Palindromes) A palindrome is a String that is spelled the same forward and backward. Some examples of palindromes are: “radar,” “able was i ere i saw elba” and, if blanks are ignored, “a man a plan a canal panama.” Write a recursive procedure TestPalindrome that returns True if the String stored in the array is a palindrome, but False otherwise. The procedure should ignore spaces and punctuation in the String. [Hint: A String can be converted to a Char array using method ToCharArray. For instance, the statement:
myArray = myString.ToCharArray()
stores the contents of string variable myString in a one-dimensional Char array myArray.]