use this function
public string Strip(string text)
{
return Regex.Replace(text, @”<(.|n)*?>”, string.Empty);
}
use this function
public string Strip(string text)
{
return Regex.Replace(text, @”<(.|n)*?>”, string.Empty);
}
Previous post: 154 Wise Sayings of Ali
Next post: Common Table Expression
Comments on this entry are closed.