Looking for a regular expression in php to change
into
... the best I could manage was
Code:
$string="
template_name,
head_stylesheet,
body_background,
body_bgcolor
";
Code:
$string="
$template_name,
$head_stylesheet,
$body_background,
$body_bgcolor
";
Code:
preg_replace("/$/","$\$",$string);