Frage

I have a htmlText with this normal content:

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT>...</FONT></P></TEXTFORMAT>

And user can customize my textFeild, so it would happen to have many <p> tags, inside this htmlText... How can I replace all these <p> tags to <span> ?

Thanks in advance :)

War es hilfreich?

Lösung

htmlText.replace(/<(\/?)p([^>]*)>/gi, "<$1span$2>");
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top