w3resource

Java: Create the concatenation of the two strings except removing the first character of each string

Java Basic: Exercise-71 with Solution

Write a Java program to create the concatenation of the two strings except removing the first character of each string. The length of the strings must be 1 and above.

Pictorial Presentation:

Java Basic Exercises: Create the concatenation of the two strings except removing the first character of each string

Sample Solution:

Java Code:

import java.lang.*;

public class Exercise71 {
    public static void main(String[] args) {
        // Define two strings
        String str1 = "Python";
        String str2 = "Tutorial";

        // Print the substrings of both strings, excluding the first character
        System.out.println(str1.substring(1) + str2.substring(1));
    }
}

Sample Output:

ythonutorial

Flowchart:

Flowchart: Java exercises: Create the concatenation of the two strings except removing the first character of each string

Java Code Editor:

Previous: Write a Java program to create a string in the form short_string + long_string + short_string from two strings.
Next: Write a Java program to create a new string taking first three characters from a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/basic/java-basic-exercise-71.php