0
Did this regex match ipv4 address : r"^([0-9]{1,3}\.){1,3}([0-9]{1,3})quot;
Regex ipv4
3 Respostas
+ 5
Yes, but it will also catch 888.342.011.384, which is not a valid IPv4 address.
+ 4
For future doubts, check out:
https://regex101.com
You can check your regex in several flavors - Python, PHP or JavaScript. Works perfectly and understands even the complex, nested expressions.
0
OK thks :)