gpt4 book ai didi

scala - 替换列表元素中的字符串

转载 作者:行者123 更新时间:2023-12-03 20:28:32 25 4
gpt4 key购买 nike

我在scala中有一个列表

List("Date=2018-02-19","Date=2018-02-25","Date=2018-03-03")

我需要从列表中的每个元素中删除“Date=”,最终结果应该是

List("2018-02-19","2018-02-25","2018-03-03")

任何人都可以建议我任何有效的方法来实现这个吗??

最佳答案

val y = List("Date=2018-02-19","Date=2018-02-25","Date=2018-03-03")
val dates = y.map(_.drop(5)) // drops the first 5 characters ("Date=") of each string
dates.foreach(println)
2018-02-19
2018-02-25
2018-03-03

关于scala - 替换列表元素中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57331721/

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