ID:2864904
 
Code:
var/regex/quote_regex=new/regex(@{“”([^”*)””})
var/quote_match=quote_regex.Find(message)
while(quote_match)
var/quote=quote_regex.group(1)


Problem description:

Its giving back quote_regex.group: undefined proc.


How do I define this under a mob/proc anyway?

Im trying to fix a say verb that catches quotation’s any help is appreciated.
Updated/Edited
You need to declare your proc first:

var/regex/rgx_quote = new/regex(@{"REGEX SEQUENCE"}),"g")

mob
proc
matchquotes(message)
while(rgx_quote.Find(message))
//process match here


Your regex sequence also looks to be invalid.