fork download
  1. object Main extends App {
  2. val matcher = "[^']*'(.*)'[^']*".r
  3. val matcher(inside) = "some string with 'the data i want' inside"
  4. println(inside)
  5. }
Success #stdin #stdout 0.38s 322240KB
stdin
Standard input is empty
stdout
the data i want