使用字符串切分函数split(String)来分割字符串,会返回一个字符串数组。
scala> "hello world".split(" ")res16: Array[String] = Array(hello, world)
使用集合操作函数foreach就可以遍历切分后获得的字符串数组。
scala> "hello world".split(" ").foreach(println)helloworld
同样你也可以使用正则表达式作为参数来切分字符串
scala> "hello world, this is me!".split("\\s+")res19: Array[String] = Array(hello, world,, this, is, me!)