Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

Idiom #327 Convert string to lower case

Assign to t the value of the string s, with all letters mapped to their lower case.

var t = s.ToLower();
import "strings"
t := strings.ToLower(s)

New implementation...
< >
programming-idioms.org