vote up 2 vote down star

Since I am completely useless at regex and this has been bugging me for the past half an hour, I think I'll post this up here as it's probably quite simple.

<a href="/folder/files/hey/">hey.exe</a>
<a href="/folder/files/hey2/">hey2.dll</a>
<a href="/folder/files/pomp/">pomp.jpg</a>

In PHP I need to extract what's between the <a> tags example:

hey.exe
hey2.dll
pomp.jpg
flag

5 Answers

vote up 6 vote down check

Avoid using '.*' even if you make it ungreedy, until you have some more practice with RegEx. I think a good solution for you would be:

'/<a[^>]+>([^<]+)<\/a>/i'

Note the '/' delimiters - you must use the preg suite of regex functions in PHP. It would look like this:

preg_match_all($pattern, $string, $matches);
// matches get stored in '$matches' variable as an array
// matches in between the <a></a> tags will be in $matches[1]
print_r($matches);
link|flag
+1 for recommending against (.*) and using exclusive character classes instead. – Tomalak Feb 26 at 17:53
vote up 2 vote down

This appears to work:

$pattern = '/<a.*?>(.*?)<\/a>/';
link|flag
vote up 2 vote down

Here is a very simple one:

<a.*>(.*)</a>

However, you should be careful if you have several matches in the same line, e.g.

<a href="/folder/hey">hey.exe</a><a href="/folder/hey2/">hey2.dll</a>

In this case, the correct regex would be:

<a.*?>(.*?)</a>

Note the '?' after the '*' quantifier. By default, quantifiers are greedy, which means they eat as much characters as they can (meaning they would return only "hey2.dll" in this example). By appending a quotation mark, you make them ungreedy, which should better fit your needs.

link|flag
vote up 2 vote down

I found this regular expression tester to be helpful.

link|flag
Even better: gskinner.com/RegExr (Flash implementation, interactive and all) – Tomalak Feb 26 at 17:27
My favorite is rubular.com – Chad Birch Feb 26 at 17:30
The ICG tester is based on .NET, RegExr is ActionScript, and Rubular is Ruby. Given that the OP is using PHP, it would probably be more helpful to recommend a PHP-based tester. google.com/search?q=PHP+regex+tester – Alan Moore Feb 26 at 18:43
Another vote for RegExr – Rytis Feb 27 at 11:11
vote up 2 vote down

<a href="[^"]*">([^<]*)</a>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.