Html tables with comments. I just wanted to uncomment those tags. I tried regex using javascript, but the problem is that it deletes the entire commented line, as I just wanted to uncomment those tags. Below is a sample html table with comments ...
<table> <tr> <td>ABCD</td> <td>Logic</td> </tr> </table>
So, in the above code, I just want to uncomment <!-- <td>26538568<td> --> . Please, this is part of the data clips from the web page, so I can not change the html code. The above table structure is like a webpage from where I am trying to extract data.
javascript jquery html regex
suds
source share