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: Create a new string from a given string swapping the last two characters of the given string

Java String: Exercise-57 with Solution

Write a Java program to create a new string from a given string swapping the last two characters of the given string. The length of the given string must be two or more.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String lastTwo(String str)
{
if (str.length() < 2) return str;
return str.substring(0, str.length()-2)+ str.charAt(str.length()-1) + str.charAt(str.length()-2);
}
    public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "string";
      System.out.println("The given strings is: "+str1);
      System.out.println("The string after swap last two characters are: "+m.lastTwo(str1));
    }
}	

Sample Output:

The given strings is: string
The string after swap last two characters are: strign

Pictorial Presentation:

Java String Exercises: Create a new string from a given string swapping the last two characters of the given string.

Flowchart:

Flowchart: Java String Exercises - Create a new string from a given string swapping the last two characters of the given string.

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to append two given strings such that, if the concatenation creates a double characters then omit one of the characters.
Next: Write a Java program to read a string and return true if it ends with a specified string of length 2.

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