Scala - 以函数方式修改字符串
我刚刚开始使用 Scala,因此开始以更实用的方式做事。
只是想知道是否有一种更实用的方法来实现如下所示的功能:
def expand(exp: String): String = {
var result = exp
for ((k,v) <- libMap) {result = result.replace(k, "(%s)".format(v))}
result
}
或者一般来说,给定一个字符串和一些可迭代的集合,遍历该集合并对每个元素增量修改输入字符串。
干杯
I'm just starting Scala and so getting my head around doing things in a more functional style.
Just wondering if there is a more functional way to achieve something like the following:
def expand(exp: String): String = {
var result = exp
for ((k,v) <- libMap) {result = result.replace(k, "(%s)".format(v))}
result
}
Or in general terms, given a string and some iterable collection, go through the collection and for every element, incrementally modify the input string.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,该模式
可以在功能上表达为
因此对于您的情况,这变为:
Generally the pattern
can be expressed functionally as
So for your case this becomas: