How to remove only images from the_content() [duplicate]

This answer already here How to remove images from showing in a post with the_content()?

<?php 
$content = get_the_content();
$content = preg_replace("/<img[^>]+\>/i", " ", $content);          
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
?>