Slugify

Dart package to convert a string to a slug, useful for URLs, filenames, IDs and more.

Forked from slugify in order to support null-safety.

Features

  • Removes unfavorable characters
  • Approximates replacements for characters not in the Latin alphabet
  • Options for a custom delimiter and case sensitivity

Usage

import 'package:slugify_string/slugify.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

Options

Name Type Default Description
delimiter String "-" Separator between words
lowercase bool true Convert text to lowercase

Libraries

slugify_string
Slugify a string