Sometimes, you might need to mach a string but there are newlines that mess it up. It seems that adding \s does not change to single line mode (like Perl would).
So, to make .* match new line character as well, you could use:

So, to make .* match new line character as well, you could use:
(.*[\s\S]*)*
