.concat()
Published Jul 26, 2021Updated Oct 5, 2021
Contribute to Docs
Returns a string that is the concatenation of the given strings.
Syntax
string.concat(String str)
str
(required): A string value that will be concatenated, appended, to another string.
Example 1
Append the string dessert
to flavor
:
class FlavoredDessert {public static void main(String[] args) {String flavor = "Strawberry ";String dessert = "Ice Cream";System.out.println(flavor.concat(dessert));// Output: Strawberry Ice Cream}}
Example 2
Concatenate the strings firstName
, middleName
, and lastName
:
class FullName {public static void main(String[] args) {String firstName = "Kimberly ";String middleName = "Angela ";String lastName = "Rodriguez";System.out.println(firstName.concat(middleName).concat(lastName));// Output: Kimberly Angela Rodriguez}}
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn Java on Codecademy
- Career path
Computer Science
Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!Includes 6 CoursesWith Professional CertificationBeginner Friendly75 hours - Free course
Learn Java
Learn to code in Java — a robust programming language used to create software, web and mobile apps, and more.Beginner Friendly16 hours