fork download
  1. object Main extends App {
  2. val regex = """#\w+""".r
  3. val text = "#shouldMatch1 #shouldMatch2 notMatch nope#shouldMatch3 nooope()#shouldMatch4"
  4. println(regex.findAllIn(text).toList)
  5. }
Success #stdin #stdout 0.63s 70896KB
stdin
Standard input is empty
stdout
List(#shouldMatch1, #shouldMatch2, #shouldMatch3, #shouldMatch4)