Dreamweaver - Select code as blocks instead of lines?

Associate
Joined
21 Sep 2007
Posts
128
Hi there,

I have a lot of tabular data in a table and I need to remove all of the widths of each cell:

Code:
<td width="67"><p align="center">YES</p></td>
<td width="78"><p align="center">YES</p></td>
<td width="73"><p align="center">YES</p></td>
<td width="37"><p align="center">YES</p></td>
<td width="47"><p align="center">YES</p></td>

I have 100's of lines of these cells but I could remove all of the widths in one select action if I could just highlight the width part in one large block instead of including the <td part etc

Can any one tell me if there is a way of toggling the selection in dreamweaver so I can select the text as blocks instead of whole lines?

I can't even use the search and replace as all of the width values are different.

Any help would be appreciated as it will save me a **** load of time!

Thanks
 
Does dreamweaver support find/replace by regex?

Here's what would work in visual studio (can't help with DW as I don't use it)

Code:
 width=":d+"
 
Last edited:
Back
Top Bottom