String case: Difference between revisions

Content added Content deleted
(→‎[[C]]: Cleaned up the 'C' sample a little- both returning as well as modifying in place is nasty, and completely unnecessary for a minimal 'C' implementation)
No edit summary
Line 199: Line 199:
my $uppercase = uc($string);
my $uppercase = uc($string);
my $lowercase = lc($string);
my $lowercase = lc($string);

==[[Pop11]]==
[[Category:Pop11]]

lvars str = 'alphaBETA';
lowertoupper(str) =>
uppertolower(str) =>


==[[Python]]==
==[[Python]]==