Thrane wrote in dk.edb.internet.webdesign.serverside.asp:
KLIP
> Til at strippe HTML, benytter jeg denne funktion, måske du kan bruge den:
>
> Function META_StripHTML(strHTML)
> 'Strips the HTML tags from strHTML
>
> Dim objRegExp, strOutput
> Set objRegExp = New Regexp
>
> objRegExp.IgnoreCase = True
> objRegExp.Global = True
> objRegExp.Pattern = "<(.\n)+?>"
>
> 'Replace all HTML tag matches with the empty string
> strOutput = objRegExp.Replace(strHTML, "")
>
> 'Replace all < and > with < and >
> strOutput = Replace(strOutput, " ", "")
> strOutput = Replace(strOutput, "<", "<")
> strOutput = Replace(strOutput, ">", ">")
>
> META_StripHTML = strOutput 'Return the value of strOutput
>
> Set objRegExp = Nothing
> End Function
>
> --
> Thrane
>
Tak for begge svar.
--
Vil du lære at kode HTML, XHTML, CSS, SSI, ASP eller ASP.NET?
- Pædagogiske tutorials på dansk
- Kom godt i gang med koderne
KLIK HER! =>
http://www.html.dk/tutorials