Website Design United States, Website Design California, Website Designing United States, Website Designing California

How to extract SRC from IMG elements in HTML code

This piece of code shows how to extract the SRC URL from the IMG element in HTML code, using a regular expression (RegEx). Every match is put into an Array.
public static ArrayList ExtractAllImagesFromHTMLbyURL(string lv_HTML)
{
  ArrayList lv_Images = new ArrayList();

  try
  {
    //Find SRC URL from IMG tag
    Regex lv_FindAllImages = new Regex(@"]*src\s*=\s*[\""\']?(?
    [^""'>\s]*)[\""\']?[^>]*>");

    // get all the matches depending upon the regular expression
    // and add them to the array.
    MatchCollection mMatchCollection = lv_FindAllImages.Matches(lv_HTML);
    foreach(Match mMatch in mMatchCollection)
    {
      string lv_Image = mMatch.Groups["ImageFile"].Value;
 
      lv_Images.Add(lv_Image); 
    }

    return lv_Images;
  }
}



    Enquiry
 






    Contact us
340 W, 26th Street, Suite F, National City, California - 91950 United States
Tel : 818-667-2853
Info@webbgirrl.com

















 

 

 

 

 

 

 

 

 

 

Ajax Technologies | Foodgear Shop| Lowest Unique Bid Auction | Our Team | Terms And Condition | What is encapsulation | MustInherit class with parameters in the constructor | How to extract src from img elements in html code | How to extract url and anchor from html content | Grab the content of a webpage using C | How to extract the host name from an url C| How to send an email using smtp C | How to remove html tags from web content C | How to convert date time to sql valid string | Set row color in datagrif web from | Disclaimer | How to refresh the data in an xml reader object | Aprendiendo ms access 2000 en 24 horas | Microsoft visual C++ net step by step | Possible to disable a row in listview | Designing sql server 2000 databases for net enterprise | Biztalk server 2000 developer guide for net
© 2008-2009 webbgirrl.com