You are here

public static function Co::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/Co.php, line 13

Class

Co
Represents characters of the Unicode category "Co" ("Other, Private Use").

Namespace

Drupal\search_api\Plugin\search_api\processor\Resources

Code

public static function getRegularExpression() {

  // phpcs:disable
  return '\\x{E000}\\x{F8FF}\\x{F0000}\\x{FFFFD}\\x{100000}\\x{10FFFD}';

  // phpcs:enable
}