<?php

$str = '#форум программистов #форум экономистов #форум
';
 
$str = preg_replace('~^(?:#[^#]+?(?:[^#]+?)?)*\n~m', '', $str);
 
var_dump($str);