Forum Moderators: open
I start with a delimited text file, currently I'm just doing a find and replace to insert the HTML at each segment. Here's a rough example of the before and after.
Name, URL, Link Text
Name1, URL1, Link Text1
Name2, URL2, Link Text2
Name3, URL3, Link Text3
After the find and replace it might look like this
<table><tr>
<td><a name="Name" href="Link">Link Text</a></td>
<td><a name="Name1" href="Link1">Link Text1</a></td>
</tr>
<tr>
<td><a name="Name2" href="Link2">Link Text2</a></td>
<td><a name="Name3" href="Link3">Link Text3</a></td>
</tr></table>
I'm simplifying the code a bit, but that gives you the flavor. Is anyone aware of an app, tool or script that'll accomodate this. Basically I want to be able to define a stock set of rules for a series of automatic, successive find and replace operations to generate the HTML from the original text.