获取 Scala 2.7.7 中 Regex.MatchIterator 的大小?

发布于 2024-12-01 23:18:12 字数 664 浏览 0 评论 0原文

在 Scala 2.7.7 中获取 Regex.MatchIterator 的大小最优雅的方法是什么?

我尝试了以下方法:

¤ 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()
                            ^

What is the most elegant way to get the size of a Regex.MatchIterator in Scala 2.7.7?

I tried the following:

¤ 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()
                            ^

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聚集的泪 2024-12-08 23:18:12

您可以转换迭代器:

iter.toList.size

请务必保存转换后的迭代器(如果您想在计算大小后访问数据),因为它只能迭代一次。

您还可以使用foldLeft,而不是转换为另一个集合:

(0 /: iter) { case (sum, _) => sum+1 }

You can convert the Iterator:

iter.toList.size

Be sure to save the converted iterator (if you want to access the data after calculating the size) because it can only iterated once.

Instead of converting to another collection you can also use foldLeft:

(0 /: iter) { case (sum, _) => sum+1 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文