Hello, In the Perl Cookbook recipe 1.14 - "Properly Capitalizing a Title or Headline" I see this substitution:
s/(\pL[\pL']*)/$nocap{$1} ? lc($1) : ucfirst(lc($1))/ge; if a word appears in the nocap hash, it is made lower case. the \pL matches a lower case character but what is [\pL']? Thanks, NS -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/