convert_case 1.0.3 copy "convert_case: ^1.0.3" to clipboard
convert_case: ^1.0.3 copied to clipboard

Easily convert case of strings

example/example.dart

import 'package:convert_case/convert_case.dart';

void main() {
  String myString = "Just a regular non-nullable string";

  print(ConvertCase.toLowerCase(myString));
  print(ConvertCase.toUpperCase(myString));
  print(ConvertCase.toAlternatingCase(myString));
  print(ConvertCase.toInverseCase(myString));
  print(ConvertCase.toSentenceCase(myString));
  print(ConvertCase.toTitleCase(myString));
}
4
likes
150
points
13
downloads

Publisher

verified publisheryarosfpv.com

Weekly Downloads

Easily convert case of strings

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

More

Packages that depend on convert_case