Allow a numberrange in URL without "uriRegex.h"

Hello @guix ,

yeah sure.

So basically i got an application. and i want the application to communicate with my webserver. To communicate with my webserver i use a 3rd-person library to implement HTTPS.

The communication im talking about should be done by a bodyless HTTPS POST request. All my Information I should receive by getting all the Data in my URL.

Basically i want to give the application 2 parameters to choose of. 1.= On or Off and 2. = number between 1 and x(lets say 32).

So for example the URL look like this: https://myipadress/command/on/5

that means i send a on signal for the number 5(could be a LED or anything else).

But before I'm able to reach my webserver with this URL I have to initialize this exact URL with the server.on() function.

and there's my problem. I dont want to initialize every URL one by one. Is there a possibillity without using UriRegex where i can say = just accept requests by the number between 1 and 32.