开发者

Regex to find the first image in an image tag in an HTML document

What is a regex to find the first image in an image tag in a开发者_JAVA百科n HTML document? My previous tries have not really worked, as they just matched based on .jpg" and didn't put into account edge cases such as having an image with a cachebuster timestamp at the end (asdf.jpg?581291823)

Edit: I'm using Node.js. I'd like to do HTML parsing, but we have a lot of documents to parse, so I'm not sure if HTML parsing is the best option as it takes considerably more time.


As anubhava correctly points out, regex is not 100% reliable for parsing HTML. However, for one-shot-tasks, (i.e. not production code), a regex solution can do a pretty good job (and is quite fast as well):

Capture the image URL filename (sans query or fragment) from the first IMG element into group $1:

<img\b[^>]+?src\s*=\s*['"]?([^\s'"?#>]+)

Note that there are certainly edge cases where this does not work.

Edit: Added ">" to the negated SRC attribute value character class.


This is a perfect example of a task that is tricky and unreliable with regex, and almost trivially easy with an HTML parser. Use a parser for this, not regex.

You haven't said which language you're using, but I've heard some very good things about Beautiful Soup, HTML Purifier, and the HTML Agility Pack, which use Python, PHP, and .NET, respectively. Trust me--save yourself some pain and use those instead.

Edit: If you must use a regex, go with @ridgerunner's pattern.


Scraping html, a simple and very loose regex would be: /\<img.*?src="(.*?)"/

Using a real DOM parser is of course the preferred method.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜