I wanted to ask if there is any type of string interpolation in Scala. I have made a search on the subject but \'till now I have found that there is no string interpolation.
I use the xml hack on scala 2.9
val age = 28
val name = "Gerry"
My name is {name} and I am {age} years old.text
res0: String = My name is Gerry and I am 28 years old