Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a way of taking a string that contains <a href="url">something</a> and remove it completely from the string.

So,

$text = 'Something string <a href="url">something</a> some more string';

Any ideas?

share|improve this question
2  
Should be easy but in the example you gave, what would you want to remove? – Antonio Laguna Jul 15 '11 at 7:06
what do you mean? – Fender Jul 15 '11 at 7:06
please be more specific with your question what's your aim .. – V... I... Jul 15 '11 at 7:07
@CLiown If you want to remove a tag from your string than very simpler way in php use strip_tags($text) that can remove all html tags from your string. – Shashank Patel Jul 15 '11 at 7:18
@CLiown If you want some tags in string for that you have to provide that tag in second parameter like // Allow <p> and <a> echo strip_tags($text, '<p><a>'); – Shashank Patel Jul 15 '11 at 7:20

3 Answers

strip_tags():

Removing an anchor is as simple as using this function

echo strip_tags($text)

In case you would want to allow the tag, just add it as a parameter.

share|improve this answer

str_replace():

$text = str_replace('<a href="url">something</a>', '', $text);

And, if there's a little more variables, preg_replace():

$text = preg_replace('/<a href="[^"]+">.+?</a>/i', '', $text);

However, there are several risks and shortcomings when combining HTML and regex.

share|improve this answer
i dont think he meant literally <a href="url">something</a> lol – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè Jul 15 '11 at 7:12
@Lawrence Cherone No, me neither. But in my experience people either (1) ask very specific questions or (2) ask very specific questions and expect generic answers. – jensgram Jul 15 '11 at 7:14

I don't understand you question perfectly, but you can use these PHP functions to replace the string:

str_replace

str_replace();

or

preg_replace

preg_replace();
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.