calvinfungcn
3/4/2020 - 9:14 AM

Check if a character 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");
      }
    }