博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Scala学习之字符串篇(三):字符串的切分
阅读量:5929 次
发布时间:2019-06-19

本文共 384 字,大约阅读时间需要 1 分钟。

hot3.png

使用字符串切分函数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!)

 

转载于:https://my.oschina.net/nenusoul/blog/800074

你可能感兴趣的文章
SQL/LINQ/Lamda 写法[转发]
查看>>
dns服务器迁移方法简单说明
查看>>
25.3. UUID()
查看>>
Hadoop - Mac OSX下配置和启动hadoop以及常见错误解决
查看>>
UIPassValue页面传值 UI_08(下)
查看>>
[译] 人人都是设计师。我们可以的
查看>>
前端战五渣学JavaScript——call、apply以及bind
查看>>
Flex布局应用
查看>>
你应该知道的前端--渲染原理
查看>>
typeof、instanceof、constructor...
查看>>
ES6 数组去重,求交并差集
查看>>
最长公共子串,动态规划
查看>>
gcc常用参数
查看>>
RabbitMQ Exchange
查看>>
Integer与int解惑
查看>>
go语言学习-mysql
查看>>
go []string slice utils
查看>>
华为DHCP SNOOPING配置
查看>>
结构体和类内存分配
查看>>
laravel学习笔记------使用 Entrust 扩展包在 Laravel 5 中实现 RBAC 权限管理
查看>>