I thought it may be [.\\n]+ but that doesn\'t seem to work?
Edit: While my original answer is technically correct, as ThorSummoner pointed out, it can be done more efficiently like so
[\s\S]
as compared to (.|\n) or (.|\n|\r)
(.|\n)
(.|\n|\r)