Небольшой трик с регулярными выражениями который редко вижу в чужом коде.
Допустим, вам нужно распарсить простой текст и вытащить оттуда пары имя+телефон. Вернуть всё это надо в виде списка словарей. Возьмем очень простой пример текста.
>>> 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
🛎#FREESIGNAL
Make a LONG/BUY ORDER on #BTC/USDT from 80100 on Futures
Leverage - 5x - 10x - 25x - 50x
👁🗨Contact @cripexperts to enter the premium group & trade with perfect targets & stop loss levels
🚨#FREESIGNAL🚨
#BTC/USDT – LONG/BUY
📉 Entry: $92,400
📊 Leverage: 5x /10x /25x / 50x
📍Platform: Futures
🔥 This is a free trade idea — Premium members get full TP/SL levels and real-time updates!
💬 DM @cripexperts to join the Premium Group
✅ Trade smart. Trade with confidence.
🚨#FREESIGNAL🚨
#BTC/USDT – SHORT/SELL
📉 Entry: $91,350
📊 Leverage: 5x /10x /25x / 50x
📍Platform: Futures
🔥 This is a free trade idea — Premium members get full TP/SL levels and real-time updates!
💬 DM @cripexperts to join the Premium Group
✅ Trade smart. Trade with confidence.
🛎#FREESIGNAL
Make a LONG/BUY ORDER on #BTC/USDT from 80100 on Futures
Leverage - 5x - 10x - 25x - 50x
👁🗨Contact @primemod to enter the premium group & trade with perfect targets & stop loss levels
🛎#FREESIGNAL
Make a LONG/BUY ORDER on #BTC/USDT from 68640 on Futures
Leverage - 5x - 10x - 25x - 50x
👁🗨Contact @primemod to enter the premium group & trade with perfect targets & stop loss levels
🚨#FREESIGNAL🚨
#BTC/USDT – LONG/BUY
📉 Entry: $92,400
📊 Leverage: 5x /10x /25x / 50x
📍Platform: Futures
🔥 This is a free trade idea — Premium members get full TP/SL levels and real-time updates!
💬 DM @primemod to join the Premium Group
✅ Trade smart. Trade with confidence.
🚨#FREESIGNAL🚨
#BTC/USDT – SHORT/SELL
📉 Entry: $91,350
📊 Leverage: 5x /10x /25x / 50x
📍Platform: Futures
🔥 This is a free trade idea — Premium members get full TP/SL levels and real-time updates!
💬 DM @primemod to join the Premium Group
✅ Trade smart. Trade with confidence.
🔅BITCOIN Will Go Down From Resistance! Sell!📉
- - - - - - - -
Please, check our technical outlook for 📊BITCOIN.
The market is approaching a key horizontal level 78,161.73.
Considering the today's price action, probabilities will be high to see a movement to 77,165.90.
- - - - - - - -
#freesignal#bitcoin
- - - - - - - -
🌐Free Copy Trading: Link
📲Join VIP via Bot:Link
❓Official Contact:@signalprovidercontact
🔅BITCOIN Will Go Lower From Resistance! Sell!📉
- - - - - - - -
Please, check our technical outlook for 📊BITCOIN.
The market is trading around a solid horizontal structure 73,205.33.
The above observations make me that the market will inevitably achieve 68,619.32 level.
- - - - - - - -
#freesignal#bitcoin
- - - - - - - -
🌐Free Copy Trading: Link
📲Join VIP via Bot:Link
❓Official Contact:@signalprovidercontact
🔅BITCOIN Will Grow! Buy!📈
- - - - - - -
Here is our detailed technical review for 📊BITCOIN.
The market is on a crucial zone of demand 69,527.38.
The oversold market condition in a combination with key structure gives us a relatively strong bullish signal with goal 70,433.22 level.
- - - - - - - -
#freesignal#bitcoin
- - - - - - - -
🌐Free Copy Trading: Link
📲Join VIP via Bot:Link
❓Official Contact:@signalprovidercontact
🔅BITCOIN Will Go Up! Buy!📈
- - - - - - -
Here is our detailed technical review for 📊BITCOIN.
The price is testing a key support 69,833.99.
Current market trend & oversold RSI makes me think that buyers will push the price. I will anticipate a bullish movement at least to 71,850.50 level.
- - - - - - - -
#freesignal#bitcoin
- - - - - - - -
🌐Free Copy Trading: Link
📲Join VIP via Bot:Link
❓Official Contact:@signalprovidercontact
🔅BITCOIN Is Very Bearish! Sell!📉
- - - - - - - -
Please, check our technical outlook for 📊BITCOIN.
The market is trading around a solid horizontal structure 70,229.88.
The above observations make me that the market will inevitably achieve 69,008.56 level.
- - - - - - - -
#freesignal#bitcoin
- - - - - - - -
🌐Free Copy Trading: Link
📲Join VIP via Bot:Link
❓Official Contact:@signalprovidercontact