Logo

Programming-Idioms

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

Be concise.

Be useful.

All contributions dictatorially edited by webmasters to match personal tastes.

Please do not paste any copyright violating material.

Please try to avoid dependencies to third-party libraries and frameworks.

Other implementations
import "strings"
t := strings.ToLower(s)
let t = s.toLowerCase();
t = s.toLowerCase();
local t = string.lower(s)
t := LowerCase(s);
$t = lc $s;
t = s.lower()
t = s.downcase
let t = s.to_lowercase()