Небольшой трик с регулярными выражениями который редко вижу в чужом коде.
Допустим, вам нужно распарсить простой текст и вытащить оттуда пары имя+телефон. Вернуть всё это надо в виде списка словарей. Возьмем очень простой пример текста.
>>> 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
Meningitis can affect anyone at any age.
Seek medical attention immediately if you experience symptoms.
Symptoms include
➡️Fever/severe headache
➡️Vomiting
➡️Drowsiness
➡️Rash
➡️Seizures
➡️Muscle/joint pain
➡️Stiff neck
#DefeatMeningitis
#Meningitis can affect any age group but mostly occurs in children and young adults.
Visit a healthcare centre for immediate medical attention if you notice any of these symptoms in your young ones.
Let’s #DefeatMeningitis together.
#Meningitis spreads mostly from one person to another through respiratory droplets e.g. coughing, sneezing & close contact such as kissing
Seek immediate medical attention if you experience these symptoms
Let’s #DefeatMeningitis together.
#Meningitis spreads mostly from one person to another through respiratory droplets e.g. coughing, sneezing & close contact such as kissing
Meningitis can affect anyone at any age. Seek medical attention if you experience symptoms.
Let's take action to #DefeatMeningitis together.
#Meningitis spreads mostly from one person to another through respiratory droplets e.g. coughing, sneezing & close contact such as kissing
Meningitis can affect anyone at any age. Seek medical attention if you experience symptoms
Let's take action to #DefeatMeningitis together
#Meningitis is an inflammation of the membranes around the spinal cord & brain.
Seek medical attention when you experience signs & symptoms such as:
➡️Fever/severe headache
➡️Vomiting
➡️Drowsiness
➡️Rash
➡️Seizures
➡️Muscle/joint pain
➡️Stiff neck
#DefeatMeningitis
#Meningitis is a medical emergency that can be deadly & can cause long-lasting impacts such as brain damage, hearing loss, organ damage & limb loss.
Early recognition saves lives. Seek immediate medical attention if you experience associated symptoms.
#DefeatMeningitis
📌Meningitis is a vaccine-preventable disease but can progress rapidly and become life-threatening if not vaccinated early.
The best way to protect yourself and your loved ones is:
✅Early vaccination
✅Recognizing the signs early
✅Seek immediate medical care
✅Follow prevention measures.
Together, we can defeat meningitis💪
#DefeatMeningitis#StaySafe#NCDCNigeria
Across the world, meningitis kills 1 in 10 people & causes lifelong disability in 1 in 5 people who survive it.
This #WorldMeningitisDay aims to remind us to raise awareness of #meningitis, its signs & symptoms, available vaccines and the race we must make to #DefeatMeningitis
Vaccination is the best prevention measure against #CerebrospinalMeningitis.
Ensure you complete Nigeria's routine immunisation schedule for your children or wards to keep them safe and #healthy.
#DefeatMeningitis
Vaccination is the best prevention measure against #CerebrospinalMeningitis.
Ensure you complete Nigeria's routine immunisation schedule for your children or wards to keep them #safe from vaccine-preventable diseases.
#DefeatMeningitis
#WorldMeningitisDay