When I copy the Excel table to Dreamweaver, it automatic covert to HTML table but in the source code, it look something like this
<td width="200"> abcd xyz </td>
I used the find and replace for fix it with this condition for first time
find:<td\b[^>]*>(.*?)</td>
replace:<td>$1</td>
the code is look like this
<td> abcd xyz </td>
second time, I used this condition
find: {2,}\b
replace: (only 1 space)
this time the code is here
<td> abcd xyz </td>
it is very close, what I need, just the space after > and before <
OK, this is my questions
1. can I remove the unwanted space?
2. is it possible to do all I expanded in one step?
Thanks in advance!!!