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
1.1k views
in Technique[技术] by (71.8m points)

regex - How to prevent texts next to closed html tags using c#

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.


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

1 Answer

0 votes
by (71.8m points)
等待大神答复

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

...