Something like this is in my mind: I put one or a few strings in and the algorithm shows me a matching regex.
Is there any "easy" way to do this, or something like this already exists?
Edit: Yes, I'm trying to find a way to generate regex.
Edit:
Regulazy is not the thing i'm searching for. The common use for the code i want is to find a correct regex for example articlenumbers.
Example:
- I put in 123456, the regex should be \d{6}
- I put in nb-123456, the regex should be \w{2}-\d{6}