Rimuovere i tag html da una stringa

Funzione per rimuovere i tag html da una stringa, lasciando esclusivamente il testo.


//elimina i tag html da una stringa
function tagRemove($htmlCode)
{
return preg_replace("/(<\/?)(\w+)([^>]*>)/e", "", $htmlCode);
}


L'utilizzo di questa funzione può tornare utile per creare anteprime di pagine html, o per evitare l'inserimento di script in moduli.

I want to drink a coffee :-)


Sponsored Links


Ricerca


Ultimi Contenuti Inseriti

How to add onload property to masterpage from child
HtmlGenericControl body = (HtmlGeneric...

C# ASP.NET
...

Transpose Column to row
create table #temp (timeId int, dim1Id int, dim2I...

SQL Server
...

(X) HTML
Suggerimenti ed esempi riguardanti il linguaggio H...

Sponsor