How to concatenate two strings using Java?



You can concatenate two Strings using the concat() method.

Example

Live Demo

public class ConcatinatedStrings {
   public static void main(String args[]) {
     
      String str1 = new String("Tutorials");
      String str2 = new String( "Point");
      String res = str1.concat(str2);
      System.out.println(res);
   }
}

Output

TutorialsPoint
Vikyath Ram
Vikyath Ram

A born rival


Advertisements