vote up 1 vote down star

Hello i want to extract links <a href="/portal/clients/show/entityId/2121" > and i want a regex which givs me /portal/clients/show/entityId/2121 the number at last 2121 is in other links different any idea?

flag

do you want to extract '2121' from '/portal/clients/show/entityId/2121' using regex? – halocursed Oct 5 at 12:11
no i want to extract '/portal/clients/show/entityId/2121' another link can have different number at last instead 2121 any idea? – streetparade Oct 5 at 12:13

5 Answers

vote up 0 vote down check

Regex for parsing links is something like this:

'/<a\s+(?:[^"'>]+|"[^"]*"|'[^']*')*href=("[^"]+"|'[^']+'|[^<>\s]+)/i'

Given how horrible that is, I would recommend using Simple HTML Dom for getting the links at least. You could then check links using some very basic regex on the link href.

link|flag
this worked for me $patterndocumentLinks ='/<a\s+(?:[^"\'>]+|"[^"]*"|\'[^\']*\')*href=("[^"]+"|\'[^\']+\'|[^<>\s]+)/i'; thank you – streetparade Oct 5 at 12:25
vote up 0 vote down

Paring links from HTML can be done using am HTML parser.

When you have all links, simple get the index of the last forward slash, and you have your number. No regex needed.

link|flag
hmm.. $html->find('href') or what? – streetparade Oct 5 at 12:11
I don't know. What does this find(...) come from? – Bart K. Oct 5 at 12:42
vote up 4 vote down

Simple PHP HTML Dom Parser example:

// Create DOM from string
$html = str_get_html($links);

//or
$html = file_get_html('www.example.com');

foreach($html->find('a') as $link) {
    echo $link->href . '<br />';
}
link|flag
this would give that as result <a href="/portal/clients/show/entityId/4636" ><img src="/img/bullet_go.png" alt="" title="Kundenakte aufrufen" /></a>" – streetparade Oct 5 at 12:26
but i just would extract /portal/clients/show/entityId/4636 so this worked '/<a\s+(?:[^"'>]+|"[^"]*"|'[^']*')*href=("[^"]+"|'[^']+'|[^<>\s]+)/i' – streetparade Oct 5 at 12:26
@streetparade my bad, forgot to say $link->href, edited – karim79 Oct 5 at 12:30
vote up 1 vote down

When "parsing" html I mostly rely on PHPQuery: http://code.google.com/p/phpquery/ rather then regex.

link|flag
vote up 1 vote down

Don't use regular expressions for proccessing xml/html. This can be done very easily using the builtin dom parser:

$doc = new DOMDocument();
$doc->loadHTML($htmlAsString);
$xpath = new DOMXPath($doc);
$nodeList = $xpath->query('//a/@href');
for ($i = 0; $i < $nodeList->length; $i++) {
    # Xpath query for attributes gives a NodeList containing DOMAttr objects.
    # http://php.net/manual/en/class.domattr.php
    echo $nodeList->item($i)->value . "<br/>\n";
}
link|flag

Your Answer

Get an OpenID
or

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