Me gusta compartir lo que aprendo, y aprender para compartir. «Learning is good but sharing is cool» (by LMB)
Hi guys! I want to share with you a regex to use as a patter for entering a route:
valid:
/something123
/something/somethingelse/thiselse
not valid:
/*-*-*-*-
/something/*=*-=
/something123/
The regex is:
/^(?:\/(?:[a-zA-Z0-9])+)+$/
Happy coding!