Skip to content

Instantly share code, notes, and snippets.

@glendmaatita
Created May 20, 2021 04:05
Show Gist options
  • Save glendmaatita/54998aaa24c22f8453c9f6e653d151f4 to your computer and use it in GitHub Desktop.
Save glendmaatita/54998aaa24c22f8453c9f6e653d151f4 to your computer and use it in GitHub Desktop.
Dart Upper Case Words (ucwords)
var words = "hey i am here. HOW ARE YOU?";
var ucwords = words.toLowerCase()
.split(" ")
.map((e) => "${e[0].toUpperCase()}${e.substring(1)}")
.join(" ");
print(ucwords); // "Hey I Am Here. How Are You?"
@ooglek
Copy link

ooglek commented Aug 15, 2022

Excellent! Thanks!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment