You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying IP regex : ^(?:(?:1\d{2}|[1-9]?\d|2[0-4]\d|25[0-5])(?:\.(?!$)|$)){4}$
Is generating : 255.226124138. 9253252.112 96.119.163.252. 251.106.136.16
Only the last one is good
The text was updated successfully, but these errors were encountered:
Thanks for the report @David-Lannion! I'm happy to review a PR for this issue, otherwise I'll look into it when I have some free time.
In the meantime, as a workaround, there's some simpler regexes suggested here that avoid the negative lookahead. You might have more luck with one of them.
Trying IP regex :
^(?:(?:1\d{2}|[1-9]?\d|2[0-4]\d|25[0-5])(?:\.(?!$)|$)){4}$
Is generating :
255.226124138.
9253252.112
96.119.163.252.
251.106.136.16
Only the last one is good
The text was updated successfully, but these errors were encountered: