Scala program to concatenate strings using the plus (+) operator

Here, we are going to learn how to concatenate strings using the plus (+) operator in Scala programming language?
Submitted by Nidhi, on May 21, 2021 [Last updated : March 10, 2023]

Scala – Concatenate Strings (Using + Operator)

Here, we will concatenate two strings using the plus (+) operator and assign the result into another string.

Scala code to concatenate strings using the plus (+) operator

The source code to concatenate strings using the plus (+) operator is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to concatenate strings
// using plus "+" operator

object Sample {
  def main(args: Array[String]) {
    var str1 = "Hello ";
    var str2 = "World ";
    var str3 = "";

    str3 = str1 + str2;

    printf("Concatenated string: '%s'\n", str3);
  }
}

Output

Concatenated string: 'Hello World '

Explanation

In the above program, we used an object-oriented approach to create the program. And, we created an object Sample. Here, we defined main() function. The main() function is the entry point for the program.

In the main() function, we created three string variables str1, str2, str3 that are initialized with "Hello ", "World  ", "" respectively. Then we concatenated strings str1, str2 using the plus (+) operator and assigned the result into str3. After that, we printed concatenated string on the console screen.

Scala String Programs »



Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.