Skip to content

Instantly share code, notes, and snippets.

View arhoy's full-sized avatar
Let's connect!

Alex H arhoy

Let's connect!
View GitHub Profile
@khushalbokadey
khushalbokadey / slugify.js
Created December 1, 2016 09:31
Code to slugify text. Mainly to use in google sheets.
function slugify(value) {
/*
* Convert the the vs in a range of cells into slugs.
*/
slug = '';
slug = value.substring(0, 30).toLowerCase();
slug = slug.replace(/[^\w\s-]/g, '');
slug = slug.replace(/\s+/g, '-');
Logger.log(slug);