Regex match Telegram username and delete whole line in PHP – Telegram API
I wanna match Telegram username in message text and delete entire line, I've tried this pattern but the problem is that it matches emails too: .*(@(?=.{5,64}(?:s|$))(?![_])(?!.*[_]{2})[a-zA-Z0-9_]+(?<![_.])).* Pattern should match all this lines : Hi @username how are you? Hi @username.how…