I'm using the following path definition:
router.get( '/tags/:tag([a-zA-Z0-9é]+)', ( req, res ) => { /.../ });
for
http://localhost/tags/ombré
But the :tag variable gets truncated and req.params.tag
simply returns ombr
What's the correct regex to allow for an accented character or even multiple accented characters?
Thank you.