-1
I have a file of approximately 60000 lines and need to remove all attributes from the HTML file.
Do you know the name of an application, Notepad plugin or any way to carry out this process in an automated way? Thanks in advance!
Exemplo:
<td height="20" align="left"><font color="#000000">Abono</font></td>
COMO DEVERIA FICAR:
<td >Abono</td>
To make it clear, what you mean by HTML attribute?
– Woss
With regular expression you should get.
string+=+"+tudo que vier depois das aspas+"
replaced by' '
– hugocsl