Hello
I'm having a problem with capturing any character (utf-8). I've tried:
/{oneLetter:[^/]}
/{oneLetter:.}
/{oneLetter:[\p{L}\p{M}0-9]{1}}
It looks like regex is compiled without u flag. Using just /{oneLetter}
is matching any character but also a longer string.
Is it possible to achieve this with current Router?