You are here

constant Unescaper::REGEX_ESCAPED_CHARACTER in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php \Symfony\Component\Yaml\Unescaper::REGEX_ESCAPED_CHARACTER

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

File

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

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}|.)';