• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/internals/chatindex.php
  • Класс: BitrixImInternalsChatIndex
  • Вызов: ChatIndex::clearText
static function clearText(string $text): string
{
	$clearedText = str_replace(static::CHARS_TO_REPLACE, ' ', $text);
	$clearedText = preg_replace('/s+/', ' ', $clearedText);

	return trim($clearedText);
}