How to match youtube links?
Matching youtube urls and their IDs
Everything you need to know about writing regular expressions for PHP.
Just like slugs, you usually want to restrict what people can choose for their username. This will prevent future layout issues, querying problems, and who knows what else.
This will restrict a username to alphanumeric characters, underscores, and dashes. It will also force the username to be between 3-16 characters.
Regex: ^[a-zA-Z0-9_-]{3,16}$