Em Terça 28 Agosto 2007 19:04, [EMAIL PROTECTED] escreveu:
> 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;
>  }

Oops!
 I meant ucwords() function.

  $MarkupExpr['removespace'] = 'RemoveSpace($args[0])';

  function RemoveSpace($in) {
        $out = ucwords($in);
         $out = str_replace(" ","" ,$out);
         return  $out;
  }

_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to