/// HTML要素のすべてのタグを削除しますpublic static string striphtml(string strhtml) { string stroutput = strhtml; Regex regex = new Regex(@"<[^>]+> | </[^>]+>"); stroutput = regex.replace(stroutput、 ""); stroutputを返します。 }