Login
|
Signup
langref.org
-
csharp
add..
all
clojure
cpp
erlang
fantom
fsharp
go
groovy
haskell
java
ocaml
perl
php
python
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"
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);
}
}
Submit a new solution for
csharp
There are 17 other solutions in
additional
languages (
clojure
,
cpp
,
erlang
,
fantom
...)