3

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.

Chindraba
  • 2,058

5 Answers5

6

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>

1

This may help you.

Sarfraz
  • 428
1

how about reading the manual? it has all the answers, such as "Search for a specific tag, Containing ...", "Use Regular Expressions", and "Search in Entire Current Local Site".

ax.
  • 131
0

I saw the answer on your Stack Overflow question, however, I do this sort of thing all the time in Dreamweaver.

Simply change the Search field to Source Code and then it should be able to do it easily if you type your two statements in.

alt text

Gareth
  • 19,080
William Hilsum
  • 117,648
0

The Dreamweaver command you're looking for is "change tag" which is dreamweaver cc search and replace interface