г
Size: a a a
г
IG
г
bot = telebot.TeleBot('%12345678:xXxXxXxXxXxX%')
MV
bot = telebot.TeleBot('%12345678:xXxXxXxXxXxX%')
г
MV
(\,x\s).+
) в waynegram ?n
⟁ᴡ
⟁ᴡ
grep ',x' kus.py | head -n 1
@client.on(events.NewMessage(outgoing=True, pattern=r"(\,x(\s|\s\n|\s\n\s|\n\s)).+"))
n
(\,x\s).+
) в waynegram ?⟁ᴡ
engine error
MV
n
engine error
MV
grep ',x' kus.py | head -n 1
@client.on(events.NewMessage(outgoing=True, pattern=r"(\,x(\s|\s\n|\s\n\s|\n\s)).+"))
⟁ᴡ
1st Capturing Group (\,x\s)
\,
matches the character ,
literally (case sensitive)x
matches the character x
literally (case sensitive)\s
matches any whitespace character (equal to [\r\n\t\f\v ]
).+
matches any character (except for line terminators)+
Quantifier — Matches between one and unlimited times, as many times as possible, giving back as needed (greedy)MV