如何在Scala中将字符串拆分为字符 [英] How to split strings into characters in Scala

查看:2188
本文介绍了如何在Scala中将字符串拆分为字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如,有一个字符串val s =Test。如何将它分成 t,e,s,t

For example, there is a string val s = "Test". How do you separate it into t, e, s, t?

推荐答案

您可以使用 toList ,如下所示:

You can use toList as follows:

scala> s.toList         
res1: List[Char] = List(T, e, s, t)

如果你想要一个数组,可以使用 toArray

If you want an array, you can use toArray

scala> s.toArray
res2: Array[Char] = Array(T, e, s, t)

这篇关于如何在Scala中将字符串拆分为字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆