ImangazalievM / Slugify

Converts a string to a slug

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slugify

Download

Converts a string to a slug

Setup

compile 'com.github.imangazalievm:slugify:1.0.0'

Usage

Generate a slug:

Slugify slugify = new Slugify();
slugify.slugify("Android Development for Beginners"); //returns "android-development-for-beginners"

You can also change the separator to underscore separator:

slugify.withUnderscoreSeparator(true);

Custom replacements

About

Converts a string to a slug


Languages

Language:Java 100.0%