Regular Expressions 101

Community Patterns

Match any json content-type

0

Regular Expression
PCRE (PHP <7.3)

/
application\/(.*\+)?json
/
gm

Description

This regex matches any json http content-type.

Submitted by anonymous - 5 years ago