IP를 찾아주는 regex
^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$
Ex _
123.312.131.13 : not match
0.12.3.4 : not match
33.123.44.12 : match
0.12.3.4 : not match
33.123.44.12 : match
123.33.3.1 : match
Analyze
^(
([0-9]
|[1-9][0-9]
|1[0-9]{2}
|2[0-4][0-9]
|25[0-5])
\.){3}
([0-9]
|[1-9][0-9]
|1[0-9]{2}
|2[0-4][0-9]
|25[0-5]
)$