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:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics