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

Categories

To be as short as possible, I need to fetch plain text from HTML. Already researched a lot on the web, but non of them helped actually. Let me explain it by providing codebase.

var source = "<div>Value1</div><h1> Value2</h1> {blablabla}";

var plainText = Regex.Replace(source, "<.*?>", String.Empty); -- Value1 Value2 {blablabla}

You may ask that why you get {blablabla}, because it is incorrect. The answer to this question is, HTML is coming from JSX file, this JSX file may contain these values, and I need to handle this somehow.

So I need to prevent the values located next to the closed HTML element.

Is there any way? Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...