Lines Matching +full:- +full:u
17 * Unescaper encapsulates unescaping rules for single and double-quoted
29 … public const REGEX_ESCAPED_CHARACTER = '\\\\(x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}|.)';
49 return $this->unescapeCharacter($match[0]);
53 return preg_replace_callback('/'.self::REGEX_ESCAPED_CHARACTER.'/u', $callback, $value);
57 * Unescapes a character that was found in a double-quoted string.
93 // U+0085 NEXT LINE
96 // U+00A0 NO-BREAK SPACE
99 // U+2028 LINE SEPARATOR
102 // U+2029 PARAGRAPH SEPARATOR
106 case 'u':
108 case 'U':
116 * Get the UTF-8 character for the given code point.