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?
|
|
|
||||
|
|
|
Regex for parsing links is something like this:
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. |
||
|
|
|
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. |
||||
|
|
|
Simple PHP HTML Dom Parser example:
|
||||||
|
|
|
When "parsing" html I mostly rely on PHPQuery: http://code.google.com/p/phpquery/ rather then regex. |
||
|
|
|
|
Don't use regular expressions for proccessing xml/html. This can be done very easily using the builtin dom parser:
|
||
|
|
