public static string ExtractBody(string htmlText) { return(StringExt.StrExtract(htmlText, "<body", "</body>", ">")); }
public static string ExtractStyle(string htmlText) { return(StringExt.StrExtract(htmlText, "<style", "</style>", ">")); }
public static string ExtractTag(string htmlText, string tag) { return(StringExt.StrExtract(htmlText, "<" + tag, "</" + tag + ">", ">")); }