Is there a way to remove html tags from a string in JavaScript? [duplicate]

I am working with the rich text editor component of primeng. This editor turns everything i type in into html. But sometimes i want to output these texts in plain text instead. Does angular 2 provide a way to easily remove the html tags from the text?

Thank you.

0

1 Answer

You can achieve this by JavaScript.

Try this!!

var plainText = content.replace(/<[^>]*>/g, ''); 

This will return you plain text.

1

You Might Also Like