Java Data Type Tutorial - Java String.concat(String str)








Syntax

String.concat(String str) has the following syntax.

public String concat(String str)

Example

In the following code shows how to use String.concat(String str) method.

public class Main {
  public static void main(String[] argv) {
    String str = "java2s.com";
    
    str = str.concat(" Java2s.com");
    System.out.println(str);
  }
}

The code above generates the following result.