Regular Expressions 101

Community Patterns

1

ip address

PCRE2 (PHP >=7.3)
ip
Submitted by Giorgio - a month ago

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

Loading markdown...
Submitted by OnlineCop - 9 years ago