作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
获取 Regex.MatchIterator
大小的最优雅方法是什么?在 Scala 2.7.7 中?
我尝试了以下方法:
¤ scala
Welcome to Scala version 2.7.7final (OpenJDK 64-Bit Server VM, Java 1.6.0_20).
Type in expressions to have them evaluated.
Type :help for more information.
scala> "a".r.findAllIn("a").size
<console>:5: error: value size is not a member of scala.util.matching.Regex.MatchIterator
"a".r.findAllIn("a").size
^
scala> "a".r.findAllIn("a").size()
<console>:5: error: value size is not a member of scala.util.matching.Regex.MatchIterator
"a".r.findAllIn("a").size()
^
最佳答案
您可以转换迭代器:
iter.toList.size
(0 /: iter) { case (sum, _) => sum+1 }
关于regex - 在 Scala 2.7.7 中获取 Regex.MatchIterator 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7223012/
获取 Regex.MatchIterator 大小的最优雅方法是什么?在 Scala 2.7.7 中? 我尝试了以下方法: ¤ scala Welcome to Scala version 2.7.7
我是一名优秀的程序员,十分优秀!