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

51,931 answers

573 users

How to get all palindrome substrings in a string with Java

1 Answer

0 votes
public class MyClass {
    public static boolean is_palindrome(String s, int i, int j) {
        String  rev = s.substring(i, j); 
        rev = new StringBuilder(rev).reverse().toString();
         
        String tmp_s = s.substring(i, j); 
        boolean b = false;
        if (tmp_s.equals(rev) && tmp_s.length() >= 2) {
            b = true;
        }
      
        return b;
    }
    public static void main(String args[]) {
        String s = "abaab";
        
        for (int i = 0; i < s.length(); i++) { 
            for (int j = i + 1; j <= s.length(); j++) { 
                if (is_palindrome(s, i, j)) {
                    System.out.println(s.substring(i, j));
                }
            }
        }
    }
}
 
 
/*
run:
 
aba
baab
aa
 
*/

 



answered Oct 22, 2019 by avibootz
edited Oct 23, 2019 by avibootz

Related questions

1 answer 141 views
1 answer 139 views
1 answer 177 views
1 answer 154 views
1 answer 152 views
1 answer 161 views
1 answer 157 views
...