How to get all palindrome substrings from the given string "ab12321bakjjkh3432"? – Asp.net
I tried with this code, but it only displays whether a given string is palindrome or not. I want to extract and display all the possible palindrome substrings in the given string. public static boolean istPalindrom(char[] word){ int i1 =…