slugify_string 2.0.0 copy "slugify_string: ^2.0.0" to clipboard
slugify_string: ^2.0.0 copied to clipboard

Converts a string into a slug. Useful for URLs, filenames, IDs, and more.

example/main.dart

import 'package:slugify_string/slugify_string.dart';

void main() {
  // Slugify with default config.
  var slug1 = Slugify('Hello, world!');
  print(slug1); // 'hello-world'

  // Set a custom delimiter.
  var slug2 = Slugify('Some prefer snake case', delimiter: '_');
  print(slug2); // 'some_prefer_snake_case'

  // Preserve the original case.
  var slug3 = Slugify('BREAKING NEWS! The world is ending!', lowercase: false);
  print(slug3); // 'BREAKING-NEWS-The-world-is-ending'

  // Normalize to latin characters.
  var slug4 = Slugify("C'est déjà l'été.");
  print(slug4); // 'cest-deja-lete'
}
3
likes
125
pub points
43%
popularity

Publisher

verified publishermadewithfelt.com

Converts a string into a slug. Useful for URLs, filenames, IDs, and more.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on slugify_string