fork download
  1. object Main extends App {
  2. val str1="""hello 'hi' 'how are' you 'do\'ing?'"""
  3. """'([^'\\]*(?:\\.[^'\\]*)*)'|\S+""".r.findAllIn(str1).foreach(println)
  4. }
Success #stdin #stdout 0.54s 55496KB
stdin
Standard input is empty
stdout
hello
'hi'
'how are'
you
'do\'ing?'