Hi all:
A client has given me imported csv files that have HTML markup in them. Can someone steer me to a good link on the subject? Or, better yet, is there a function to easily do this?
Dim HTML As String
HTML = "<b>b</b>"
HTML = Replace(HTML, "<b>", "")
MsgBox HTML
This works easily enough, but then you have to delete the original tag, too. To strip out any/all HTML markup coming through an imported csv file could be infinitesimal. I'm looking for a way to loop through the text quickly, much like I've seen algorithms for alphanumeric number replacements.
Any help would be greatly appreciated.
Ron
Ron Repp
If gray hair is a sign of wisdom, then I'm a genius.
My newest novel: Wooden Warriors
A client has given me imported csv files that have HTML markup in them. Can someone steer me to a good link on the subject? Or, better yet, is there a function to easily do this?
Dim HTML As String
HTML = "<b>b</b>"
HTML = Replace(HTML, "<b>", "")
MsgBox HTML
This works easily enough, but then you have to delete the original tag, too. To strip out any/all HTML markup coming through an imported csv file could be infinitesimal. I'm looking for a way to loop through the text quickly, much like I've seen algorithms for alphanumeric number replacements.
Any help would be greatly appreciated.
Ron
Ron Repp
If gray hair is a sign of wisdom, then I'm a genius.
My newest novel: Wooden Warriors