I need to find all links and images in HTML source of the webpage. Actaually I have following expression:
boost::regex findurl("(?s)<\\s*a\\s+.*?href\\s*=\\s*['\"]([^http]{1}[^\\s>]*)['\"]", boost::regex::normal | boost::regbase::icase);
How should it look like to find images ( tag) also?