You are here

Pf.php in Search API 8

File

src/Plugin/search_api/processor/Resources/Pf.php
View source
<?php

namespace Drupal\search_api\Plugin\search_api\processor\Resources;


/**
 * Represents characters of the category "Pf" ("Punctuation, Final quote").
 */
class Pf implements UnicodeCharacterPropertyInterface {

  /**
   * {@inheritdoc}
   */
  public static function getRegularExpression() {

    // phpcs:disable
    return '\\x{00BB}\\x{2019}\\x{201D}\\x{203A}\\x{2E03}\\x{2E05}\\x{2E0A}' . '\\x{2E0D}\\x{2E1D}\\x{2E21}';

    // phpcs:enable
  }

}

Classes

Namesort descending Description
Pf Represents characters of the category "Pf" ("Punctuation, Final quote").