Slugify
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);