/// Alle Tags in HTML -Elementen entfernen public static String StripHtml (String strhtml) { String stroutput = strhtml; regex regex = new regex (@"<[^>]+> | </[^>]+>"); stroutput = regex.replace (stroutput, ""); Return Stroutput; }