在下面的工作表中,我创建了一个自定义字符串插值器。
object WSLookup {
implicit class LookupSC(val sc: StringContext) extends AnyVal {
def lookup(args: Any*): String = {
val strings = sc.parts.iterator
val expressions = args.iterator
var buf = new StringBuffer(strings.next)
while (strings.hasNext) {
buf append doLookup(expressions.next.toString)
buf append strings.next
}
buf.toString()
}
def doLookup(s: String): String = {
// Just change the string to uppercase to test.
s.toUpperCase
}
}
val x = "cool"
val testString = "Not $x"
lookup"How $x"
// lookup testString //<--- See question 1
}
我对此有两个问题:
- 如何在变量上使用字符串插值器
- 您如何向字符串插值器传递或使用附加参数。例如,我的字符串插值器用于从文件中查找变量,但我想动态指定文件名?