fork(1) download
  1. s='theQuick--brown_fox JumpsOver___the.lazy DOG'
  2. puts s.scan(/\p{Lu}{2,}|\p{L}\p{Ll}*/).map(&:downcase)
Success #stdin #stdout 0s 6308KB
stdin
Standard input is empty
stdout
the
quick
brown
fox
jumps
over
the
lazy
dog