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()
^
length? – Kipton Barros Aug 28 '11 at 18:40lengthas well:scala> "a".r.findAllIn("a").length<console>:5: error: value length is not a member of scala.util.matching.Regex.MatchIterator– Staffan Nöteberg Aug 28 '11 at 18:46