Ejemplo n.º 1
0
 public static string ExtractBody(string htmlText)
 {
     return(StringExt.StrExtract(htmlText, "<body", "</body>", ">"));
 }
Ejemplo n.º 2
0
 public static string ExtractStyle(string htmlText)
 {
     return(StringExt.StrExtract(htmlText, "<style", "</style>", ">"));
 }
Ejemplo n.º 3
0
 public static string ExtractTag(string htmlText, string tag)
 {
     return(StringExt.StrExtract(htmlText, "<" + tag, "</" + tag + ">", ">"));
 }