in reply to Re: Removing Single Quote Problem
in thread Removing Single Quote Problem
foreach my $item (@{$rss->{'items'}}) { next unless defined($item->{'title'}) && defined($item->{'link +'}) && defined($item->{'description'}); $i += 1; next if $i > $feedcount; $item->{'description'}=~s/\n//gms; #$item->{'description'} =~ tr/\n'//d; $item->{'description'}=~s/'//gms; $output .= "'<font size=2><b><a target=\"_blank\" href=\"$item +->{'link'}\">$item->{'title'}</a></b></font><br /><font size=1>$item- +>{'description'}</font><br />'+\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Removing Single Quote Problem
by phaylon (Curate) on Feb 10, 2005 at 19:56 UTC | |
by Roy Johnson (Monsignor) on Feb 10, 2005 at 22:01 UTC | |
by Anonymous Monk on Feb 10, 2005 at 21:36 UTC | |
by phaylon (Curate) on Feb 10, 2005 at 23:26 UTC | |
by Anonymous Monk on Feb 11, 2005 at 17:59 UTC |