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 Exercises: 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)
 {
    String str1 = "Python";    
	String str2 = "Tutorial"; 
	
	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:

Contribute your code and comments through Disqus.

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.



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