I have a requirement where I need to get the last HREF in the HTML code, means getting the HREF in the footer of the page.
Is there any direct regular expression for the same?
|
|
No regex, use the :last jQuery selector instead. demo :
|
|||
|
|
|
You could use plain JavaScript for this (if you don't need it to be a jQuery object):
Disclaimer: the above code only works using JavaScript; as HTML itself has no regex, or DOM manipulation, capacity. If you need to use a different technology please leave a comment or edit your question to include the relevant tags. |
|||
|
|
|
It's not a good idea to parse html with regular expressions. Have a look at HtmlParser to parse html. |
|||
|
|