Remove External Links from WordPress posts Using add_filter() in Theme functions.php

You’re using the correct approach, minor replacement needed! ..

Simply replace
$content = preg_replace('/<a href=\"(.*?)\">(.*?)<\/a>/', "", $content);
with
$content = preg_replace(array('"<a href(.*?)>"', '"</a>"'), array('',''), $content);