private static function Inline::getHexRegex in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/symfony/yaml/Inline.php \Symfony\Component\Yaml\Inline::getHexRegex()
Gets a regex that matches a YAML number in hexadecimal notation.
Return value
string
2 calls to Inline::getHexRegex()
- Inline::dump in vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Inline.php - Dumps a given PHP variable to a YAML string.
- Inline::evaluateScalar in vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Inline.php - Evaluates scalars and replaces magic values.
File
- vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Inline.php, line 538
Class
- Inline
- Inline implements a YAML parser/dumper for the YAML inline syntax.
Namespace
Symfony\Component\YamlCode
private static function getHexRegex() {
return '~^0x[0-9a-f]++$~i';
}