I need to remove anchor tags from some text, and can\'t seem to be able to do it using regex. Just the anchor tags, not their content. For instance,
This question has been answered already but I thought I would add my solution to the mix. I like this better than the accepted solution because its a bit more to the point.
$content = preg_replace(array('""', '""'), array('',''), $content);