Skip to content

Instantly share code, notes, and snippets.

@twoism
Created November 2, 2012 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twoism/4003231 to your computer and use it in GitHub Desktop.
Save twoism/4003231 to your computer and use it in GitHub Desktop.
scala> val r = """(^foo.*)""".r
r: scala.util.matching.Regex = (^foo.*)
scala> val s = "foobar"
s: java.lang.String = foobar
scala> s match {
| case r(f) => println(f)
| case _ => println("not found")
| }
foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment