Skip to content

Instantly share code, notes, and snippets.

@spyesx
Last active May 1, 2025 18:23
Show Gist options
  • Select an option

  • Save spyesx/561b1d65d4afb595f295 to your computer and use it in GitHub Desktop.

Select an option

Save spyesx/561b1d65d4afb595f295 to your computer and use it in GitHub Desktop.

Revisions

  1. spyesx revised this gist Aug 15, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion string-to-slug.js
    Original file line number Diff line number Diff line change
    @@ -16,7 +16,7 @@ var string_to_slug = function (str)
    .replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by a dash
    .replace(/-+/g, '-') // collapse dashes
    .replace( /\//g, '' ); // collapse all forward-slashes by a dash
    .replace( /\//g, '' ); // collapse all forward-slashes

    return str;
    }
  2. spyesx revised this gist Aug 15, 2019. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion string-to-slug.js
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,8 @@ var string_to_slug = function (str)
    str = str.replace('.', '-') // replace a dot by a dash
    .replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by a dash
    .replace(/-+/g, '-'); // collapse dashes
    .replace(/-+/g, '-') // collapse dashes
    .replace( /\//g, '' ); // collapse all forward-slashes by a dash

    return str;
    }
  3. spyesx revised this gist Aug 15, 2019. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions string-to-slug.js
    Original file line number Diff line number Diff line change
    @@ -4,8 +4,8 @@ var string_to_slug = function (str)
    str = str.toLowerCase();

    // remove accents, swap ñ for n, etc
    var from = "àáäâèéëêìíïîòóöôùúüûñç·/_,:;";
    var to = "aaaaeeeeiiiioooouuuunc------";
    var from = "àáäâèéëêìíïîòóöôùúüûñçěščřžýúůďťň·/_,:;";
    var to = "aaaaeeeeiiiioooouuuuncescrzyuudtn------";

    for (var i=0, l=from.length ; i<l ; i++)
    {
  4. spyesx revised this gist Jun 2, 2018. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions string-to-slug.js
    Original file line number Diff line number Diff line change
    @@ -12,8 +12,9 @@ var string_to_slug = function (str)
    str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
    }

    str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by -
    str = str.replace('.', '-') // replace a dot by a dash
    .replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by a dash
    .replace(/-+/g, '-'); // collapse dashes

    return str;
  5. spyesx created this gist Sep 15, 2015.
    20 changes: 20 additions & 0 deletions string-to-slug.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    var string_to_slug = function (str)
    {
    str = str.replace(/^\s+|\s+$/g, ''); // trim
    str = str.toLowerCase();

    // remove accents, swap ñ for n, etc
    var from = "àáäâèéëêìíïîòóöôùúüûñç·/_,:;";
    var to = "aaaaeeeeiiiioooouuuunc------";

    for (var i=0, l=from.length ; i<l ; i++)
    {
    str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
    }

    str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
    .replace(/\s+/g, '-') // collapse whitespace and replace by -
    .replace(/-+/g, '-'); // collapse dashes

    return str;
    }