Hi,
Can some one please help me how on removing HTML header tag from page content,
ex: <head>this is the title</head>
i want to remove whole head tag from the HTML.
Thanks,

Hi,
Can some one please help me how on removing HTML header tag from page content,
ex: <head>this is the title</head>
i want to remove whole head tag from the HTML.
Thanks,
Suppose you have the following HTML in a global variable
Set(myHTML,"<html><head>this is the title</head><body>Hello World!</body></html>");
You can use this code to concatenate the text strings on either side of the <head> tags
Left(myHTML,Find("<head>",myHTML)-1)&Right(myHTML,Len(myHTML)-Find("</head>",myHTML)-6)
With a final result of
"<html><body>Hello World!</body></html>"
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."