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?
|
|
|
Without using a full blown parser, this may do the trick for most situations...
It uses a negative lookbehind to make sure there is no It also takes into account people who delimit their attribute values with |
||||
Just tried this in IDEone.com and it has the desired effect. |
||||
|
In this simple case, the
|
|||
|
|
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 For any other (reasonably short) string manipulation code, finding a counterexample that breaks it will be pretty easy. |
|||||||
|
|
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. |
|||
|
|
|
|||
|
|