fork download
  1. foo = "<p>A</p>,<p>B</p>,<p>C</p>".scan(/<p>(.*?)<\/p>/i).flatten
  2. p(foo)
Success #stdin #stdout 0.01s 7460KB
stdin
Standard input is empty
stdout
["A", "B", "C"]