i have 500 records in a table. one column holds all html data. so e.g –
html> body> … /body> /html>.
What i want to do is a find and replace. i have this tag in every single record –
<table id="something something" />
i want to replace that in all the rows with <table id="" />
now the difficult part is all the “something something” is different for each and every alt.
So the only common tag is “table id=”. how can do a find an replace here?
i have 500 records in a table. one column holds all html data. so
Share
Try this (assumes only one “table id” occurs in each):
EDIT: Based on feedback in the comments below, this modified code should work.