|
Posted by Vince Morgan on 04/26/07 17:47
"ana" <anka@vizualmedia.hr> wrote in message
news:f0n5jp$er$1@ss408.t-com.hr...
> I'm not very good programer, I use one php script for cms for flash.
> When I make changes in text in this CMS, for example I put letters bold,
> this script puts <strong></strong> on beginning and the end, but I need
> <b></b> so I use str_replace to replace strong with b, and this is ok.
>
> But when I change a color, this script puts for example <font
color=#CCCCCC>
> in front of letters but I need <font color="#CCCCCC"> because Flash won't
> read it without quotes. And I can't say str_replace #CCCCCC with "#CCCCCC"
> because I don't know wich color the person will choose.
>
> Please if you have some idea help me!
>
>
$in = 'This is <font-color=#CCCCCC>a color';
$out = preg_replace('/(font-color=)(#)([0-9a-fA-F]+)(\>)/',
'\\1'.'"\\2'.'\\3'.'"\\4', $in);
I don't have much experience with regular expressions, but this may do it
ana;
I would test it carefully first;
Vince
Navigation:
[Reply to this message]
|