You are here

public function SearchTextProcessor::process in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/search/src/SearchTextProcessor.php \Drupal\search\SearchTextProcessor::process()

File

core/modules/search/src/SearchTextProcessor.php, line 56

Class

SearchTextProcessor
Processes search text for indexing.

Namespace

Drupal\search

Code

public function process(string $text, ?string $langcode = NULL) : array {
  $text = $this
    ->analyze($text, $langcode);
  return explode(' ', $text);
}