gpt4 book ai didi

mysql - 如何在scala中模拟MySQL SUBSTRING_INDEX()?

转载 作者:行者123 更新时间:2023-11-29 20:27:43 25 4
gpt4 key购买 nike

如何使用 scala 字符串函数在 scala 中模拟 MySQL 函数 SUBSTRING_INDEX()?

例如MySQL:

SELECT SUBSTRING_INDEX('这是第一个测试', ' ', 3);

返回这是测试

如何在scala中实现相同的目标?

最佳答案

这个我也不明白。这是一个更简单的解决方案,可以按需要工作。

object Main {
def main(args: Array[String]): Unit = {
val str = "this is a string"
val substring = takeWords(str, ' ', 3)
println(substring) // yields "this is a"
}

def takeWords(s: String, splitAt: Char, n: Int): String = {
s.split(splitAt) take n mkString(" ") //or whatever separator you need
}
}

关于mysql - 如何在scala中模拟MySQL SUBSTRING_INDEX()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39205237/

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