coryd.dev/queries/functions/slugify.psql

4 lines
107 B
Text

SELECT lower(regexp_replace(
unaccent(regexp_replace($1, '[^\\w\\s-]', '', 'g')),
'\\s+', '-', 'g'
));