1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
commonnormalizer.php
См. документацию.
1<?php
2namespace Bitrix\Location\Entity\Address\Normalizer;
3
4use Bitrix\Main\Text\Encoding;
5
13{
17 public function normalize(string $string): string
18 {
19 $result = $string;
20
21 $result = preg_replace('/([^\w\s]|_)/iu', ' ', $result);
22
23 $result = preg_replace('/\s+/iu', ' ', $result);
24 $result = trim($result);
25 return mb_strtoupper($result);
26 }
27}
$result
Определения get_property_values.php:14