Regular Expressions 101

Sponsors

Library entries

-2
javascript

SQL Injection

SQL injection regEx pattern
Submitted by Darshan Patil - 7 years ago
-2
javascript

search all special characters

no description available
Submitted by rlynjb - 7 years ago
-2
pcre

float

matches 123.4f 123.4F .4f .4F 5f 5F
Submitted by Mateusz Paluch - 7 years ago
-2
pcre

boolean

Value must be either true or false
Submitted by nstaal - 7 years ago
-2
pcre

Simple Username Pattern

a simple username pattern
Submitted by Saeed Tabrizi - 7 years ago
-2
pcre

DOTNET

no description available
Submitted by anonymous - 7 years ago
-2
pcre

Get begining of url (subdomain)

In between 2 delimiters
Submitted by anonymous - 7 years ago
-3
pcre

Browser regex

no description available
Submitted by anonymous - 10 years ago
-3
pcre

test2

no description available
Submitted by anonymous - 9 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