hey all,

was wondering if there was an easier way to do a string search and replace method to filter out certain markup or advertising on certain rss feeds.

so far im just hacking the module by adding a str_ireplace fucntion.

File: feedapi.module
Line: 1098
Add the following:

$rssremove = array('text1', 'remove me text2');
$text = str_ireplace($rssremove, '', $text);

if u found this helpful please reply... thanks!