Regular Expressions 101

Community Patterns

123...6

Match IP (ipv4) addresses: [0.0.0.0]-[255.255.255.255]

0

Regular Expression
PCRE (PHP <7.3)

/
(?:^|\s) (\b(?:2[0-4]\d|25[0-5]|1?\d?\d)\b \. \b(?:2[0-4]\d|25[0-5]|1?\d?\d)\b \. \b(?:2[0-4]\d|25[0-5]|1?\d?\d)\b \. \b(?:2[0-4]\d|25[0-5]|1?\d?\d)\b) (?:$|\s)
/
gmx

Description

Matches ranges from 0-255 for all four octets. Extra leading or trailing '.' invalidate the match, as do values > 255.

Submitted by OnlineCop - 9 years ago