URL Slug
URL-friendly slugs
Pattern
^[a-z0-9]+(?:-[a-z0-9]+)*$
Matching examples
hello-worldmy-post-123Non-matching examples
Hello Worldmy--slug-startBreakdown
- ^[a-z0-9]+
- Start with alphanumeric
- (?:-[a-z0-9]+)*
- Optional hyphen-separated segments
- $
- End of string