Skip to content

Instantly share code, notes, and snippets.

@pabloprogramador
Last active August 29, 2015 14:07
Show Gist options
  • Save pabloprogramador/1c31bb01469b1c831f15 to your computer and use it in GitHub Desktop.
Save pabloprogramador/1c31bb01469b1c831f15 to your computer and use it in GitHub Desktop.
StripTags
@helper StripTags(string conteudo, int quantidade = 0){
string noHTML = System.Text.RegularExpressions.Regex.Replace(conteudo, @"<[^>]+>|&nbsp;", "").Trim();
noHTML = System.Web.HttpUtility.HtmlDecode(noHTML);
if(quantidade > 0){
noHTML = noHTML.Substring(0, quantidade > noHTML.Length ? noHTML.Length : quantidade);
}
@System.Web.HttpUtility.HtmlDecode(noHTML)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment