/// supprimer toutes les balises dans les éléments HTML
String statique publique striphtml (String strhtml)
{
String Stroutput = strhtml;
regex regex = new regex (@ "<[^>] +> | </ [^>] +>");
Stroutput = regex.replace (Stroutput, "");
return Stroutput;
}