Answers for "make first character uppercase dart"

0

dart char is uppercase

import 'dart:io';

main() {
  print("Enter a string : ");
  var str = stdin.readLineSync();

  if (str[0].toUpperCase() == str[0]) {
    print("The first character is uppercase");
  } else {
    print("The first character is not uppercase");
  }
}
Posted by: Guest on January-04-2021
-1

first letter capital flutter

extension CapExtension on String {
  String get inCaps => '${this[0].toUpperCase()}${this.substring(1)}';
  String get allInCaps => this.toUpperCase();
  String get capitalizeFirstofEach => this.split(" ").map((str) => str.capitalize).join(" ");
}
Posted by: Guest on March-22-2021

Code answers related to "make first character uppercase dart"

Code answers related to "Dart"

Browse Popular Code Answers by Language