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: Concatenate a given string to the end of another string

Java String: Exercise-7 with Solution

Write a Java program to concatenate a given string to the end of another string.

Pictorial Presentation:

Java String Exercises: Concatenate a given string to the end of another string

Sample Solution:

Java Code:

public class Exercise7 {

    public static void main(String[] args)
    {
        String str1 = "PHP Exercises and ";
        String str2 = "Python Exercises";
        
        System.out.println("String 1: " + str1);
        System.out.println("String 2: " + str2); 
       

        // Concatenate the two strings together.
        String str3 = str1.concat(str2);

        // Display the new String.
        System.out.println("The concatenated string: " + str3);
    }
}

Sample Output:

String 1: PHP Exercises and                                                                                   
String 2: Python Exercises                                                                                    
The concatenated string: PHP Exercises and Python Exercises

Flowchart:

Flowchart: Java String  Exercises - Concatenate a given string to the end of another 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 compare two strings lexicographically, ignoring case differences.
Next: Write a Java program to test if a given string contains the specified sequence of char values.

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