... case head +: tail => ... } 其中head是第一个字符,而tail是剩余的字符串? 在-6ren">
gpt4 book ai didi

scala - head::字符串的尾部模式匹配

转载 作者:行者123 更新时间:2023-12-04 07:53:14 26 4
gpt4 key购买 nike

我可以用字符串做这样的事情吗:

s match {
case "" => ...
case head +: tail => ...
}

其中 head是第一个字符,而 tail是剩余的字符串?

在上面的代码中, head的类型是 Any,我希望它是 StringChar

最佳答案

case h +: t表示case +:(h, t)。有object +: unapply方法。

仅针对unapply定义了对象+:SeqLike方法,而String不是SeqLike

您需要这样的自定义unapply方法:

object s_+: {
def unapply(s: String): Option[(Char, String)] = s.headOption.map{ (_, s.tail) }
}

"abc" match {
case h s_+: t => Some((h, t))
case _ => None
}
// Option[(Char, String)] = Some((a,bc))

关于scala - head::字符串的尾部模式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27120582/

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