Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
496 views
in Technique[技术] by (71.8m points)

javascript - Regular Expression: exclude html tags from "content"

One friend asked me this and as my knowledge on RegExp is not so good yet here I am.

How can exclude the HTML tags from this string?

re<br>na<br>to<br>galvao

I've tried some RegExp but it didn't work as I was expecting.

(.*)<.*>(.*)

But this RegExp gets the first < and the last >.

Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

this is a quick way to do it:

var content = "re<br>na<br>to<br>galvao";
content = content.replace(/<[^>]*>/g,'');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...