How to replace html using dreamweaver’s “find and replace”

dreamweaverfind and replace

I want to do find and replace for example . In dreamweaver's find and replace

<p><strong>Business Development</strong></p>

into

<h4>Business Development</h4>

I have to change in lots of files.

I'm trying this to type it in search and replace, but it's not working.

Best Answer

You could simply use Dreamweaver's Regex Replace function. (Ctrl-F and check "Use Regular Expression")

Find:

<p><strong>(.*)</strong></p>

Replace:

<h4>$1</h4>

Related Question