質問

I want to use the find and replace feature in Dreamweaver to search for meta tags and link tags with /> in them and replace them with >.

For example:

<meta name=..... />

Replace with:

<meta name=.... >

I discovered that this helps me find them all: <META[^>]*\/>

but how do I replace them so that all the meta content is there EXCEPT the forward slash?

役に立ちましたか?

解決

You can search for this:

<(META[^>]*)\/>

And replace with this:

<($1)>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top