namefully 0.1.6 copy "namefully: ^0.1.6" to clipboard
namefully: ^0.1.6 copied to clipboard

outdated

A Dart utility for handling person names in a particular order, way, or shape.

example/namefully.dart

import 'package:namefully/namefully.dart';

void main() {
  // Gives a simple name some super power.
  var name = Namefully('Jon Stark Snow');

  // Gets the count of characters, excluding space.
  print(name.count); // 12

  // Gets the count of characters, including space.
  print(name.length); // 14

  // Gets the first name.
  print(name.first); // Jon

  // Gets the first middle name.
  print(name.middle); // Stark

  // Gets the last name.
  print(name.last); // Snow

  // Gets all the initials.
  print(name.initials(withMid: true)); // ['J', 'S', 'S']

  // Formats it as desired.
  print(name.format('L, f m')); // SNOW, Jon Stark

  // Makes it short.
  print(name.shorten()); // Jon Snow

  // Makes it flat.
  print(name.zip()); // Jon S. S.

  // Makes it uppercase.
  print(name.upper()); // JON STARK SNOW

  // Transforms it into dot.case.
  print(name.dot()); // jon.stark.snow
}
38
likes
0
pub points
79%
popularity

Publisher

verified publisherralflorent.com

A Dart utility for handling person names in a particular order, way, or shape.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on namefully