Skip to content

Instantly share code, notes, and snippets.

@BekNaji
Created February 2, 2023 11:23
Show Gist options
  • Save BekNaji/cd6ae8dee0756e9c47028619b8db441f to your computer and use it in GitHub Desktop.
Save BekNaji/cd6ae8dee0756e9c47028619b8db441f to your computer and use it in GitHub Desktop.
Capitalize text in dart
// SOFTWARE developer ----> Software Developer
String capitalizeAllWord(String val) {
var value = val.toLowerCase();
var result = value[0].toUpperCase();
for (int i = 1; i < value.length; i++) {
if (value[i - 1] == " ") {
result = result + value[i].toUpperCase();
} else {
result = result + value[i];
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment