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:

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
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join