String.concat(String str) has the following syntax.
public String concat(String str)
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.