Unstoppable Domains

[PHP] Strip "a href" html code from links

Spaceship Spaceship
Watch

liam_d

The original NP Emo KidEstablished Member
Impact
25
Hi all i need a good way to strip html hyperlink code from a link and just display the actual address, anyone got a good code to do it?

Thanks!
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Some Regular Expression fun.
Its in php currently, but the pattern should be consistent across most languages.

Code:
$string="<a href='http://www.google.com'>Google</a> is a search engine.\n <br />";
preg_match("/\<a href\='([^']+)'\>([^\<]+)\<\/a\>/", $string, $matches);
echo $matches[1];


Bruce
 
0
•••
Dynadot — .com Registration $8.99Dynadot — .com Registration $8.99

We're social

Unstoppable Domains
Domain Recover
DomainEasy — Payment Flexibility
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back