Login
|
Signup
langref.org
-
python
,
csharp
,
erlang
, and
fantom
add..
all
clojure
cpp
fsharp
go
groovy
haskell
java
ocaml
perl
php
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Problem
Strings
Case
Make a string lowercase
Transform
"Caps ARE overRated"
into
"caps are overrated"
python
"Caps ARE overRated".lower()
"Caps ARE overRated".lower()
csharp
string str = "Caps ARE overRated";
str = str.ToLower() ;
Console.WriteLine(str);
class SolutionXX
{
static void Main()
{
string str = "Caps ARE overRated";
str = str.ToLower() ;
Console.WriteLine(str);
}
}
erlang
io:format("~s~n", [string:to_lower("Caps ARE overRated")]).
-module(strlower).
-export([start/0]).
start() ->
io:format("~s~n", [string:to_lower("Caps ARE overRated")]).
fantom
s := "Caps ARE overRated".localeLower
class SolutionXX
{
Void main()
{
s := "Caps ARE overRated".localeLower
}
}
Submit a new solution for
python
,
csharp
,
erlang
, or
fantom
There are 14 other solutions in
additional
languages (
clojure
,
cpp
,
fsharp
,
go
...)