Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Find the longest mirror image string at the both ends of a given string

Java String: Exercise-94 with Solution

Write a Java program to find the longest mirror image string at the both ends of a given string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String endsWithMirrorImage(String stng) 
{
  int l  = stng.length();
  String f_str = "";
  String t_str1 = "";
  String t_str2  = "";
  for (int i = 0; i < l; i++) 
  {
    t_str1 += stng.substring(i,i+1);
    t_str2 = "";
    for (int j = t_str1.length()-1; j >= 0; j--) 
	{
      t_str2 += t_str1.substring(j,j+1);
      if (t_str2.equals(stng.substring(l-i-1,l)))
        f_str = t_str1;
    }
  }
  return f_str;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "rotavator";
      System.out.println("The given string is: "+str1);
      System.out.println("The longest mirror image string in the string is: "+m.endsWithMirrorImage(str1));
	  }
}

Sample Output:

The given string is: rotavator
The longest mirror image string in the string is: rotavator

Pictorial Presentation:

Java String Exercises: Find the longest mirror image string at the both ends of a given string

Flowchart:

Flowchart: Java String Exercises - Find the longest mirror image string at the both ends of a given string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to find the longest substring appears at both ends of a given string.
Next: Write a Java program to return the sum of the digits present in the given string. If there is no digits the sum return is 0.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe