How can I match line breaks between two asterisks in Ruby? I have this string
Foo **bar**
test **hello
world** 12345
and I only want to find
**hello
world**
I tried it with \*{1,2}(.*)\n(.*)\*{1,2}
but this matches
**bar**
test **
I played with a non greedy matcher like \*{1,2}(.*?)\n(.*?)\*{1,2}
but this doesn't work either, so I hope someone can help.