Logo

Programming-Idioms

  • JS
  • Pascal

Idiom #327 Convert string to lower case

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

t := LowerCase(s);
let t = s.toLowerCase();
var t = s.ToLower();

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