H 
		
								
				
				
			
		Howard
I need to write a regex that will match everything in between this tag
<div width="137">(.*)</duv>
it works when (.*) is a single line but i couldn't get it to work if the
opening and closing tags are not on the same line
example
<div width="137">hello
world
</duv>
it should match
hello
world
Thanks in advance,
Howard
				
			<div width="137">(.*)</duv>
it works when (.*) is a single line but i couldn't get it to work if the
opening and closing tags are not on the same line
example
<div width="137">hello
world
</duv>
it should match
hello
world
Thanks in advance,
Howard