in reply to Regex does not work across new line character
uhm, you're reading line by line, so it's impossible for the
regex to match over two lines.
(secondly, the dot . does not match a newline (but everything else). just fyi, you don't have a dot in your regex.)
you'd probably have to concatenate the string in between
the // .. // and then after it match it with the regex.