I have raw html code for a news story. I've used the
Replace(MyString, ReplaceWhat, ReplaceWith) as String
function to replace all the <p> and </p> tags, but I'm having trouble with the <a href=URL> tags. See, the problem is that the 'a' tags vary in length and content so unless there is some way to use wildcards (like * and ?) in the replace function and just say:
Replace(MyString, "<*>", ""
To remove all html tags in the text. Here's an example of the raw html text:
Japanese-style gourmet dining -- and play gastronomic <a href=" roulette.
Does anybody know how to remove this from the string data? Or if there IS a way to use wildcards in the Replace function. {SOS}
RUN FunnySignatureMessage
Replace(MyString, ReplaceWhat, ReplaceWith) as String
function to replace all the <p> and </p> tags, but I'm having trouble with the <a href=URL> tags. See, the problem is that the 'a' tags vary in length and content so unless there is some way to use wildcards (like * and ?) in the replace function and just say:
Replace(MyString, "<*>", ""
To remove all html tags in the text. Here's an example of the raw html text:
Japanese-style gourmet dining -- and play gastronomic <a href=" roulette.
Does anybody know how to remove this from the string data? Or if there IS a way to use wildcards in the Replace function. {SOS}
RUN FunnySignatureMessage