> Hi if i have an string lets say
> $stri="Joana Prado";
> How do i transformm it into
> "joana prado" 
> (all lowercase)
> Thanks

The lc function returns the lower case of a string:
my $lower_case_string = lc($stri);

________________________________________________________________________
This email has been scanned for all viruses by the MessageLabs Email
Security System. For more information on a proactive email security
service working around the clock, around the globe, visit
http://www.messagelabs.com
________________________________________________________________________

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to