fork(2) download
  1. class Ideone {
  2. static void main(String[] args) {
  3. String s = /10,14,"1011 testing 1",10,"1022 testing 2",10,"1033, 234, testing 3"/
  4. print( s.findAll(/"[^"]*"/).join(",") )
  5. }
  6. }
Success #stdin #stdout 1.89s 140744KB
stdin
Standard input is empty
stdout
"1011 testing 1","1022 testing 2","1033, 234, testing 3"