How to remove [removed] tags from an HTML page using C#?

前端 未结 5 1108
盖世英雄少女心
盖世英雄少女心 2020-12-15 22:29

    
        
        

        
5条回答
  •  隐瞒了意图╮
    2020-12-15 22:39

    using regex:

    string result = Regex.Replace(
        input, 
        @"", 
        string.Empty, 
        RegexOptions.Singleline | RegexOptions.IgnoreCase
    );
    

提交回复
热议问题