scala length of string

The length of a string in Scala can be obtained using the length method. Here's an example:

val str = "Hello, World!"
val length = str.length

In this example, the variable length will store the length of the string "Hello, World!", which is 13.