• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/search/content.php
  • Класс: BitrixVoximplantSearchContent
  • Вызов: Content::normalizePhoneNumbers
static function normalizePhoneNumbers($string)
{
	return preg_replace_callback(
		static::PHONE_NUMBER_REGEX,
		function($matches)
		{
			return CVoxImplantPhone::stripLetters($matches[0]);
		},
		$string
	);
}