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

Updated on: 19-Feb-2020

211 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements