Reports legacy string formatting expressions (via "format", "formatted" or string concatenation) that can be converted to interpolated strings.

The new syntax is more concise, offers more static checking and provides a better runtime performance.

Example:


  val str = "test"
  "test %s".format(str)

After the quick-fix is applied:


  val str = "test"
  s"test $str"