Camel notation usually refers to something without spaces, such as "HelloWorld".

Does the ucfirst builtin help with whay you want to do?

$_ = "hello world";
print join " ", map { ucfirst } split;

On Tue, Aug 11, 2009 at 11:33 AM, Berler Chanan<[email protected]> wrote:
> Hi All,
>
> I wonder if there is a way to change text into camel notation style.
> Example: "hello world" should be "Hello World"
>
> Thanks
> Chanan
>
> _______________________________________________
> Perl mailing list
> [email protected]
> http://mail.perl.org.il/mailman/listinfo/perl
>



-- 
Gaal Yahas <[email protected]>
http://gaal.livejournal.com/
_______________________________________________
Perl mailing list
[email protected]
http://mail.perl.org.il/mailman/listinfo/perl

Reply via email to