Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a regex and a string

val reg = "(a)(b)"
val str = "ab"

and a corresponding case class

case class Foo(a: string, b: string)

How can I match the regex against the string and unapply the matches into the case class so I have

Foo("a", "b")

in the end?

share|improve this question

1 Answer

Pattern match on the result of finding the regular expression in the string and assigning the results to Foo. The API docs for Regex have a similar example.

scala> val reg = "(a)(b)".r
reg: scala.util.matching.Regex = (a)(b)

scala> val str = "ab"
str: String = ab

scala> case class Foo(a: String, b: String)
defined class Foo

scala> val foo = reg.findFirstIn(str) match{
     | case Some(reg(a,b)) => new Foo(a,b)
     | case None => Foo("","")
     | }
foo: Foo = Foo(a,b)

 scala> foo.a
res2: String = a

scala> foo.b
res3: String = b
share|improve this answer
No way to avoid the intermediate step of assigning the variables a and b? Because in my actual use case, there are 6. – Tass Feb 6 at 6:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.