/// Remova todas as tags em elementos HTML public static string striphtml (string strhtml) { string stroutput = strhtml; regex regex = novo regex (@"<[^>]+> | </[^>]+>"); stroutput = regex.replace (stroutput, ""); retornar stroutput; }