fork(84) download
  1. def s = "This is a simple string 234 something else here as well 4334"
  2. def m = s =~ /[0-9]{3}/
  3. (0..<m.count).each { print m[it] + '\n' }
Success #stdin #stdout 1.19s 388864KB
stdin
Standard input is empty
stdout
234
433