Answers for "what is string concatenation"

6

concatenation

the process of adding strings / chars together to make a larger string
ie: 
String str = "cat"; 
Char letter = 's';
String newWord = str + letter;
==> newWord == "cats"
Posted by: Guest on July-30-2020
0

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");
   }
}
Some String Handling Methods 
char charAt(int index)  - Returns the character at the specified index. 
int compareTo(Object o)  - Compares this String to another Object. 
String concat(String str)  - Concatenates the specified string to the end of this string. 
boolean equals(Object anObject) - Compares this string to the specified object. 
boolean equalsIgnoreCase(String anotherString) - Compares this String to another String, ignoring case considerations.
Posted by: Guest on August-31-2021
-1

string concatenation using +

let str = 'Hello';
str += ' ';
str += 'World';
str; // 'Hello World'
Posted by: Guest on August-13-2021
-1

concatenate a string

let myPet = 'seahorse';console.log('My favorite animal is the ' + myPet + '.'); // My favorite animal is the seahorse.
Posted by: Guest on May-30-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language