Java: Create the concatenation of the two strings except removing the first character of each string
Remove First Char and Concatenate
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:
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:
For more Practice: Solve these Related Problems:
- Modify the program to remove the last character instead.
 - Write a program to remove the first two characters from each string.
 - Modify the program to concatenate the middle parts of both strings.
 - Write a program to swap the first character of two strings before concatenation.
 
Go to:
PREV : Short + Long + Short String.
NEXT :
 First 3 Chars or #.
Java Code Editor:
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
