/ Published in: C#

Remove breaklines / html formatting
Expand |
Embed | Plain Text
Regex.Replace(title, @"<(.|\n)*?>", string.Empty);
You need to login to post a comment.
derekholmes on 09/17/10
2 people have marked this snippet as a favorite
Remove breaklines / html formatting
Regex.Replace(title, @"<(.|\n)*?>", string.Empty);
You need to login to post a comment.