|
|
|
|
|
by wat10000
420 days ago
|
|
Regex can be good but you need to be willing to bail out when it’s not appropriate. For something like locating IP addresses in text, using a regex to identify candidates is a great idea. But as you show, you don’t want to implement the full validation in it. Use regex to find dotted digit groups, but validate the actual numeric values as a separate step afterwards. |
|