Regular Expressions 101

Sponsors

Library entries

1
pcre

Indonesia Post Code

no description available
Submitted by respeto - 8 years ago
1
pcre

border syntax checker

Checks the css value for a border
Submitted by Benjamin Weigt - 8 years ago
1
pcre

lisp

match function names in defun constructs
Submitted by anonymous - 8 years ago
1
pcre

image.ext check

regexp for match images extension (png,jpg,jpeg,gif)
Submitted by dummy - 8 years ago
1
pcre

Log entry Regex

no description available
Submitted by KP - 8 years ago
1
pcre

daily 204

no description available
Submitted by anonymous - 8 years ago
0
pcre

webui

webui test
Submitted by Stelsy - 8 years ago
5
pcre

URL

URL Description from Dr. M. G. @ Brookes
Submitted by anonymous - 8 years ago
0
pcre

TCP/UDP port number

validates TCP/UDP port number (1..65535)
Submitted by sanchox - 8 years ago

match valid JSON

Vote

26

Regular Expression
pcre

/
(?(DEFINE) # Note that everything is atomic, JSON does not need backtracking if it's valid # and this prevents catastrophic backtracking (?<json>(?>\s*(?&object)\s*|\s*(?&array)\s*)) (?<object>(?>\{\s*(?>(?&pair)(?>\s*,\s*(?&pair))*)?\s*\})) (?<pair>(?>(?&STRING)\s*:\s*(?&value))) (?<array>(?>\[\s*(?>(?&value)(?>\s*,\s*(?&value))*)?\s*\])) (?<value>(?>true|false|null|(?&STRING)|(?&NUMBER)|(?&object)|(?&array))) (?<STRING>(?>"(?>\\(?>["\\\/bfnrt]|u[a-fA-F0-9]{4})|[^"\\\0-\x1F\x7F]+)*")) (?<NUMBER>(?>-?(?>0|[1-9][0-9]*)(?>\.[0-9]+)?(?>[eE][+-]?[0-9]+)?)) ) \A(?&json)\z
/
x

Description

Loading markdown...
Submitted by Mateon1 - 8 years ago