在Perl我能做到
my @l = qw( str1 str2 str3 str4 )
在Ruby中
l = %w{ str1 str2 str3 str4 }
但是在Scala看起来我已经陷入了
val l = List( "str1", "str2", "str3", "str4" )
我真的需要所有"
和,
s吗?
答案 0 :(得分:16)
你可以做到
implicit class StringList(val sc: StringContext) extends AnyVal {
def qw(): List[String] =
sc.parts.flatMap(_.split(' '))(collection.breakOut)
}
qw"str1 str2 str3"
或通过隐式类:
implicit class StringList(val s: String) extends AnyVal {
def qw: List[String] = s.split(' ').toList
}
"str1 str2 str3".qw
(两者都需要Scala 2.10,尽管第二个可以适用于Scala 2.9)