need some help with this RegEx magic..
I have this:
<a href="/en/node/1032/delete?destination=node%2F5%2Fblog">delete</a>
and this:
(<a)*([^>]*>)[^<]*(</a>)
$1 = <a
$2 = href="/en/node/1032/delete?destination=node%2F5%2Fblog">
$3 = </a>
I need some aditional strings:
1032
href="/en/
en is dynamic!
How can I get this strings?
Used in php