0 purchases
slugify3
slugify #
Dart package to convert a string to a slug, useful for URLs, filenames, IDs and more.
Features #
Removes unfavorable characters
Approximates replacements for characters not in the Latin alphabet
Options for a custom delimiter and case sensitivity
Null-safety compliant
Usage #
import 'package:slugify3/slugify3.dart';
// Use with default options.
String slug = slugify('Hello, World! Foo Bar');
print(slug); // hello-world-foo-bar
// Use with custom options.
String slug2 = slugify('Hello, World! Foo Bar', lowercase: false, delimiter: '🙂');
print(slug2) // Hello🙂World🙂Foo🙂Bar
// Use extension method.
String slug3 = 'Hello, World! Foo Bar'.slugify();
print(slug3) // hello-world-foo-bar
copied to clipboard
Options #
Name
Type
Default
Description
delimiter
String
"-"
Separator between words
lowercase
bool
true
Convert text to lowercase
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.