How can I move a block of text from the head of <>tag area within the &lt; body &gt; tag box?

I am retarget approximately 2500 html files and a block of text should be moved to the head of <>mark the surface of the < body > tag. It must immediately follow the < body > tag. Here is an example: < h3 > heading < / h3 > < p > A bunch of text here, blah blah < /p >.  I find the block using a regular expression < >(.*?) < p > h3, but do not know what to do after that.

If you just want to move the

and

on theand in thethe following regular expression work:

(

[\s\S]*?

)([\s\S]*))

Replace in the field, use this:

$2$ 1

Tags: Dreamweaver

Similar Questions

Maybe you are looking for