We Recommend

Learning Perl Learning Perl
In this smooth, carefully paced course, a leading Perl trainer teaches you to program in the language that threatens to make C, sed, awk, and the Unix shell obsolete for many tasks. This book is the "official" guide for both formal (classroom) and informal learning. It is fully accessible to the novice programmer.


Posted By

noah on 07/03/07


Tagged

text filter capitalize upcase


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

melling


capitalize words


Published in: Perl 


  1. sub wordcaps {
  2. my $line = shift;
  3. $line =~ s/\b(\w)/\U$1/g;
  4. return $line;
  5. }

Report this snippet 

You need to login to post a comment.