TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #65 · 8 апр.

Небольшой трик с регулярными выражениями который редко вижу в чужом коде. Допустим, вам нужно распарсить простой текст и вытащить оттуда пары имя+телефон. Вернуть всё это надо в виде списка словарей. Возьмем очень простой пример текста. >>> text = ''' >>> Alex:8999123456 >>> Mike:+799987654 >>> Oleg:+344456789 >>> ''' Соответственно, для выделения нужных элементов будем использовать группы. Получится такой паттерн: (\w+):([\d+]+) Как мы будем формировать словарь из найденных групп? >>> import re >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append({ >>> "name": match.group(1), >>> "phone": match.group(2) >>> }) >>> print(results) [{'name': 'Alex', 'phone': '8999123456'}, ...] Можно немного сократить запись используя zip >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append(dict(zip(['name', 'phone'], match.groups()))) Но есть способ лучше! Это именованные группы в regex. Можно в паттерне указать имя группы и результат сразу забрать в виде словаря. >>> for match in re.finditer(r"(?P<name>\w+):(?P<phone>[\d+]+)", text): >>> results.append(match.groupdict()) То есть всё что я сделал, это добавил в начале группы (внутри сбокочек) такую запись: (?P<group-name>...) Теперь найденная группа имеет имя и можно обратиться к ней как к элементу списка >>> name = match['name'] Либо забрать сразу весь словарь методом groupdict() >>> match.groupdict() #tricks#regex

Резултати

Пронајдени 42 слични објави

Пребарај: #uiux

当前筛选 #uiux清除筛选
Fido Studio

@fidostudio · Post #16 · 01.12.2021 г., 15:42

Website for Juru Energy from UK. Juru Energy solution-oriented international consulting and engineering firm focused on the energy sector. #web#uiux Follow us: Telegram · Instagram · Dribbble

Hashtags

Fido Studio

@fidostudio · Post #15 · 01.12.2021 г., 15:40

Tezkor is a service for ordering fast delivery of food from restaurants and groceries through mobile applications or a website. #web#uiux Follow us: Telegram · Instagram · Dribbble

Hashtags

Fido Studio

@fidostudio · Post #9 · 01.12.2021 г., 13:04

Landing pages for Fermopolis. It is an online platform that allows farmers to raise finance, grow agricultural products and then supply them to consumers or return a percentage of sales. #web#uiux Follow us: Telegram · Instagram · Dribbble

Hashtags

Fido Studio

@fidostudio · Post #14 · 01.12.2021 г., 15:39

Tezkor is a service for ordering fast delivery of food from restaurants and groceries through mobile applications or a website. #mobile#uiux Follow us: Telegram · Instagram · Dribbble

Hashtags

Fido Studio

@fidostudio · Post #11 · 01.12.2021 г., 13:12

Special vaccination App for Covid 19. This App will help you to plan ahead the time, place and type of vaccination. Check out our new work 🙌 Link in bio. #app#uiux Follow us: Telegram · Instagram · Dribbble

Hashtags

ПретходнаСтраница 1 од 4Следна