.concat()
Anonymous contributor
Anonymous contributor3071 total contributions
Anonymous contributor
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}}
All contributors
- Anonymous contributorAnonymous contributor3071 total contributions
- robgmerrill124 total contributions
- Victoria-DR22 total contributions
- christian.dinh2476 total contributions
- Anonymous contributor
- robgmerrill
- Victoria-DR
- christian.dinh
Looking to contribute?
- 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.