/ Published in: C#
Expand |
Embed | Plain Text
using System.Text.RegularExpressions; public string removeHTML(string input) { string pattern = @"<(.|\n)*?>"; string output = regex.Replace(input, string.Empty); return output; }
You need to login to post a comment.
