You are here

protected static property FeedsJSONPathParser::$fourByteRegex in Feeds JSONPath Parser 7

A regular expression that finds four byte UTF-8 chars.

Type: string

File

./FeedsJSONPathParser.inc, line 20
Contains FeedsJSONPathParser.

Class

FeedsJSONPathParser
Parses JSON using JSONPath.

Code

protected static $fourByteRegex = '/(?:\\xF0[\\x90-\\xBF][\\x80-\\xBF]{2}|[\\xF1-\\xF3][\\x80-\\xBF]{3}|\\xF4[\\x80-\\x8F][\\x80-\\xBF]{2})/s';