Essentially the simplest regex you can make for a situation like that is:
PHP Code:
[^"]+"@@@@@@@@"
You replace the @ symbols with what ever text you're sending the chat channel. What the rest of it means is to look for anything except a quotation mark, until you find a quotation mark, then look for what is specified after the quotation mark(which is some @ and another quotation mark).