You are here

constant Unescaper::REGEX_ESCAPED_CHARACTER in Lockr 7.3

Regex fragment that matches an escaped character in a double quoted string.

File

vendor/symfony/yaml/Unescaper.php, line 29

Class

Unescaper
Unescaper encapsulates unescaping rules for single and double-quoted YAML strings.

Namespace

Symfony\Component\Yaml

Code

const REGEX_ESCAPED_CHARACTER = '\\\\(x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}|.)';