Em Terça 28 Agosto 2007 12:54, noskule escreveu:
Have you tried ucfirst() function?
$MarkupExpr['removespace'] = 'RemoveSpace($args[0])';
function RemoveSpace($in) {
$out = ucfirst($in);
$out = str_replace(" ","" ,$out);
return $out;
}