String Concatenation
String firstName = "John ";
String lastName = "Doe";
System.out.println(firstName.concat(lastName));
String Concatenation
String firstName = "John ";
String lastName = "Doe";
System.out.println(firstName.concat(lastName));
Concatenating Strings
//The String class includes a method for concatenating two strings :
string1.concat(string2);
This returns a new string that is string1 with string2 added to it at the end. You can also use the concat() method with string literals
"My Name is".concat("Zara");
Strings are most commonly concatenated with the "+" operator
"Hello," + " world" + "!"
Example
public class StringDemo {
public static void main(String args[]) {
String string1 = "saw I was ";
System.out.println("Dot " + string1 + "Tod");
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us