public static function Zl::getRegularExpression in Search API 8
Returns a regular expression matching this character class.
Return value
string A PCRE regular expression.
Overrides UnicodeCharacterPropertyInterface::getRegularExpression
File
- src/
Plugin/ search_api/ processor/ Resources/ Zl.php, line 13
Class
- Zl
- Represents characters of the Unicode category "Zl" ("Separator, Line").
Namespace
Drupal\search_api\Plugin\search_api\processor\ResourcesCode
public static function getRegularExpression() {
// phpcs:disable
return '\\x{2028}';
// phpcs:enable
}