Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string that looks like:

$string = '<a href="http://google.com">http://google.com</a>';

How can I remove the http:// part from the link text, but leave it in the href attribute?

share|improve this question

6 Answers

up vote 9 down vote accepted

Without using a full blown parser, this may do the trick for most situations...

$str = '<a href="http://google.com">http://google.com</a>';

$regex = '/(?<!href=["\'])http:\/\//';

$str = preg_replace($regex, '', $str);

var_dump($str); // string(42) "<a href="http://google.com">google.com</a>"

It uses a negative lookbehind to make sure there is no href=" or href=' preceding it.

See it on IDEone.

It also takes into account people who delimit their attribute values with '.

share|improve this answer
that works, tx. nice site this ideone, you can actually run php code on it :) – Alex Feb 2 '11 at 13:51
@Alexandra No worries, it is a good question! – alex Feb 2 '11 at 13:52
$string = '<a href="http://google.com">http://google.com</a>'; 
$var = str_replace('>http://','>',$string); 

Just tried this in IDEone.com and it has the desired effect.

share|improve this answer
1  
@ardman... PHP??!!! Hell must of frozen over! – Neurofluxation Feb 2 '11 at 13:42
2  
Just worth throwing out there, this won't catch > http://..., but if you trim out the spaces beforehand this should do it. – Robert Feb 2 '11 at 13:43
i don't know why but it doesn't work, I get a empty string.. – Alex Feb 2 '11 at 13:45
Nah, a space between the <a> tags, like <a href='...'> Text </a> – Robert Feb 2 '11 at 13:46
@Robert Or newline if you indent your text nodes (I often do for readability.) – alex Feb 2 '11 at 23:07

In this simple case, the preg_replace function will probably work. For more stability, try using DOMDocument:

$string = '<a href="http://google.com">http://google.com</a>';
$dom = new DOMDocument;
$dom->loadXML($string);

$link = $dom->firstChild;
$link->nodeValue = str_replace('http://', '', $link->nodeValue);
$string = $dom->saveXML($link);
share|improve this answer
Just an edge case, you may want to use regex to make sure you strip it off from the beginning only, what about a link like http://example.com/send-to-friend?url=http://somewhere.com ? Also, +1 for using a parser. – alex Feb 2 '11 at 23:35

Any simple regular expression or string replacement code is probably going to fail in the general case. The only "correct" way to do it is to actually parse the chunk as an SGML/XML snippet and remove the http:// from the value.

For any other (reasonably short) string manipulation code, finding a counterexample that breaks it will be pretty easy.

share|improve this answer
Well, the incorrect way is still more appropriate. There's not enough edge case potential to warrant using the overkill solution (html parser) here. A regular expression is sufficient. (The no regex for html parsing meme is somewhat dated.) – mario Feb 2 '11 at 13:50
1  
One man's "meme" is another man's correctness. We don't know how critical it is for this to work all the time, or how trustworthy the input might be. Regex will probably work, but I don't want to give @Alexandra the impression that their problem solved for every possible input. – Justin Morgan Feb 2 '11 at 13:54

Assuming that "http://" always appears twice on $string, search the string for "http://" backwards using strripos. If the search succeeds, you'll know the start_index of the "http://" you want to remove (and you know the length of course). Now you can use substr to extract everything that goes before and after the chunk you want remove.

share|improve this answer
$string = '<a href="http://google.com">http://google.com</a>';
$var = explode('http://',$string);
echo $var[2]; 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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