"one2two3three" 从第二-6ren">
gpt4 book ai didi

regex - Scala正则表达式替换为匿名函数

转载 作者:行者123 更新时间:2023-12-04 01:38:47 25 4
gpt4 key购买 nike

在Ruby中,我可以通过以下方式替换字符串中的字符:

a = "one1two2three"
a.gsub(/\d+/) {|e| e.to_i + 1}
=> "one2two3three"

从第二行评估块的结果将替换模式中匹配的块。我们可以在Scala中做一些等效的事情吗?用函数/匿名函数的结果替换正则表达式中的内容?

最佳答案

是的,Regex#replaceAllIn的重载版本带有函数Match => String。您的代码的等效Scala版本将是:

"""\d+""".r.replaceAllIn("one1two2three", m => (m.group(0).toInt + 1).toString)

关于regex - Scala正则表达式替换为匿名函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5675820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com