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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…