// Uppercase functions sorted by smallest syntax
// more languages implementations will be added soon
// Perl
uc($abc);
// Ruby
abc.upcase
// Python
abc.upper()
// C#
abc.toUpper();
// PHP
strtoupper($abc);
// Java
abc.toUpperCase();
// JavaScript
abc.toUpperCase();
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.